You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i need to compare (without regard for the case) two strings that are not UTF-8 encoded. The only access I have to the individual chars is through an iterator.
Would it be possible for this crate to expose a comparison interface between two char iterators? Something like:
/// Check the equality of two character iterators.fnstream_eq<A:Iterator<Item=char>,B:Iterator<Item=char>>(a:A,b:B) -> bool;/// Compare two character iterators.fnstream_cmp<A:Iterator<Item=char>,B:Iterator<Item=char>>(a:A,b:B) -> cmp::Ordering;
The text was updated successfully, but these errors were encountered:
i need to compare (without regard for the case) two strings that are not UTF-8 encoded. The only access I have to the individual chars is through an iterator.
Would it be possible for this crate to expose a comparison interface between two
char
iterators? Something like:The text was updated successfully, but these errors were encountered: