dsl: add ns

This commit is contained in:
🪞👃🪞 2025-08-10 21:50:03 +03:00
parent 35a5784d23
commit ab0dc3fae0
2 changed files with 39 additions and 1 deletions

View file

@ -81,7 +81,7 @@ pub const fn peek_tail (src: &str) -> DslPerhaps<&str> {
Ok(None) => Ok(None),
Ok(Some((start, length))) => {
let tail = str_range(src, start + length, src.len());
for_each!((i, c) in char_indices(tail) => if !is_space(c) { return Ok(Some(tail)) });
for_each!((_i, c) in char_indices(tail) => if !is_space(c) { return Ok(Some(tail)) });
Ok(None)
},
}