We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7d48e1 commit 9622100Copy full SHA for 9622100
Clojure/Clojure/Lib/Util.cs
@@ -107,6 +107,11 @@ public static bool equiv(bool x, object y)
107
return equiv((object)x, y);
108
}
109
110
+ [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "equiv")]
111
+ public static bool equiv(char x, char y)
112
+ {
113
+ return x == y;
114
+ }
115
116
117
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "pcequiv")]
0 commit comments