Crate unchecked_std

Source
Expand description

Rust standard library methods with some checks removed for the sake of performance and binary size.

Modules§

prelude
Duplicate exports in prelude to comply with clippy::wildcard_imports.

Traits§

CopyFromSliceUnchecked
A trait for copy_from_slice without the length check.
ExtendFromSliceUnchecked
A trait for extend_from_slice without the capacity check.
ExtendFromWithinUnchecked
A trait for extend_from_within without the capacity and bounds checks.
ExtendUnchecked
A trait for extend without the capacity check.
PushStrUnchecked
A trait for push_str without the capacity check.
PushUnchecked
A trait for push without the capacity check.