#string #chunks

str-chunks

implements char-wise chunked iteration of str

2 unstable releases

0.2.0 Jan 15, 2025
0.1.0 Jan 11, 2025

#25 in #chunks

Download history 105/week @ 2025-01-08 144/week @ 2025-01-15 1/week @ 2025-02-05 135/week @ 2025-02-12 176/week @ 2025-02-19 233/week @ 2025-02-26 187/week @ 2025-03-05 120/week @ 2025-03-12 166/week @ 2025-03-19 64/week @ 2025-03-26

565 downloads per month

Custom license

36KB
492 lines

str-chunks

GitHub last commit Crates.io Docs.rs

About

implements char-wise chunked iteration of str

the methods str_chunks, str_chunks_exact, str_rchunks, and str_rchunks_exact behave like the similarly named methods on slice, but return string slices that are chunk_size chars long. take note: these slices are not necessarily chunk_size bytes long. chunk.len() != chunk_size

import ImplStrChunks to get methods on str

Usage

Add to your Cargo.toml:

[dependencies]
str-chunks = "0.1.1"

See docs.rs for examples.

or just copy src/str_chunks.rs into your own project. im not your mom. dont forget to remove the #![no_std]

No runtime deps