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
It would be great if there would be a function with identical usage, but that also includes the byte offset in the iterator item. I need this because i need to remove some characters from a specific line, but cant because the byte offset i have (from .take(n).fold(0, |count, v| count + v.len())) would not take into consideration the bytes of the actual newlines characters.
The text was updated successfully, but these errors were encountered:
It would be great if there would be a function with identical usage, but that also includes the byte offset in the iterator item. I need this because i need to remove some characters from a specific line, but cant because the byte offset i have (from
.take(n).fold(0, |count, v| count + v.len())
) would not take into consideration the bytes of the actual newlines characters.The text was updated successfully, but these errors were encountered: