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 4ee5d4d commit ab80710Copy full SHA for ab80710
src/karm-core/base/string.cpp
@@ -268,6 +268,10 @@ bool eqCi(_Str<E> a, _Str<E> b) {
268
return true;
269
}
270
271
+export bool eqAsciiCi(Rune a, Rune b) {
272
+ return toAsciiLower(a) == toAsciiLower(b);
273
+}
274
+
275
export template <StaticEncoding Target, StaticEncoding Source>
276
_String<Target> transcode(_Str<Source> str) {
277
usize len = transcodeLen<Source, Target>(str);
0 commit comments