konst::slice

Function bytes_trim

Source
pub const fn bytes_trim(this: &[u8]) -> &[u8]
Expand description

Removes ascii whitespace from the start and end of this.

§Const stabilization

The equivalent std function was const-stabilized in Rust 1.80.0.

§Example

use konst::slice;

const TRIMMED: &[u8] = slice::bytes_trim(b"\nhello world  ");

assert_eq!(TRIMMED, b"hello world");