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
The lines and split methods currently return impl DoubleEndedIterator<Item = &AsciiStr>. It would be nice if they returned a concrete type, similar to std::str::Lines and std::str::Split. A concrete type allows the the iterator to be easily stored in a struct.
The text was updated successfully, but these errors were encountered:
The
lines
andsplit
methods currently returnimpl DoubleEndedIterator<Item = &AsciiStr>
. It would be nice if they returned a concrete type, similar tostd::str::Lines
andstd::str::Split
. A concrete type allows the the iterator to be easily stored in a struct.The text was updated successfully, but these errors were encountered: