branchless_core 0.1.0

Algorithms and data structures designed to maximize performance on superscalar processors.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! IP address parsing.

#[cfg(target_arch = "x86_64")]
#[cfg(target_feature = "sse2")]
pub use crate::raw::sse2::parse_ipv4;

#[derive(Debug)]
pub enum Ipv4ParseError {
    WrongLength,
    Invalid,
}