trivet 3.1.0

The trivet Parser Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Trivet
// Copyright (c) 2025 by Stacy Prowell.  All rights reserved.
// https://gitlab.com/binary-tools/trivet

//! Module for decoding numbers.

mod binary_float;
mod decimal_float;
mod decoder;
mod hexadecimal_float;
mod octal_float;
mod radix;

pub use decoder::NumberParser;
pub use decoder::NumberParserSettings;
pub use decoder::NumberParts;
pub use radix::Radix;