simd_cesu8 1.1.0

An extremely fast, SIMD accelerated, encoding and decoding library for CESU-8 and Modified UTF-8.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! This module contains certain implementation details that are used for
//! optimization purposes.
//!
//! THIS MODULE IS NOT PART OF THE PUBLIC API AND IS SEMVER EXEMPT.

pub mod fallback;
#[cfg(feature = "nightly")]
pub mod simd;
#[cfg(any(feature = "bench", not(feature = "nightly")))]
pub mod word;

#[cfg(feature = "nightly")]
pub use self::simd as active;
#[cfg(not(feature = "nightly"))]
pub use self::word as active;