Skip to main content

sark_core/
lib.rs

1pub mod error;
2pub mod http;
3pub mod simd;
4pub mod test_util;
5pub mod utils;
6
7#[inline]
8pub fn identity_mut<T>(x: &mut T) -> &mut T {
9    x
10}