Closed paolobarbolini closed 3 weeks ago
This removes let _ = from in front of split_to and split_off and mostly follows the suggestions from the #[must_use] impls. One of the uses of split_to is instead replaced with take.
let _ =
split_to
split_off
#[must_use]
take
This removes
let _ =
from in front ofsplit_to
andsplit_off
and mostly follows the suggestions from the#[must_use]
impls. One of the uses ofsplit_to
is instead replaced withtake
.