10 releases

Uses old Rust 2015

0.4.3 Feb 18, 2023
0.4.2 Feb 16, 2020
0.4.1 Apr 8, 2019
0.4.0 Sep 5, 2018
0.1.2 Nov 29, 2017

#100 in Parser implementations

Download history 110845/week @ 2023-12-17 89067/week @ 2023-12-24 101797/week @ 2023-12-31 117326/week @ 2024-01-07 120469/week @ 2024-01-14 127988/week @ 2024-01-21 139232/week @ 2024-01-28 146032/week @ 2024-02-04 138268/week @ 2024-02-11 139446/week @ 2024-02-18 146543/week @ 2024-02-25 151287/week @ 2024-03-03 152008/week @ 2024-03-10 146804/week @ 2024-03-17 138148/week @ 2024-03-24 132947/week @ 2024-03-31

584,211 downloads per month
Used in 254 crates (20 directly)

MIT/Apache

23KB
300 lines

btoi

Parse integers from ASCII byte slices.

crates.io docs.rs

Introduction

Provides functions similar to from_str_radix, but is faster when parsing directly from byte slices instead of strings.

Supports #![no_std].

use btoi::btoi;

assert_eq!(Ok(42), btoi(b"42"));
assert_eq!(Ok(-1000), btoi(b"-1000"));

Documentation

Read the documentation

Changelog

  • 0.4.3
    • Use #[track_caller].
  • 0.4.2
    • No longer !#[deny(warnings)], which is is a forwards compability hazard in libraries.
    • Explicit !#[forbid(unsafe_code)].
  • 0.4.1
    • - was parsed as zero, but should have errored. Thanks @wayslog.
  • 0.4.0
    • Change type of radix to u32 (from u8) to mirror the standard library.
    • No need to #[inline] generic functions.
  • 0.3.0
    • New default feature std. Disable for #![no_std] support.
    • Mark functions as #[inline].
  • 0.2.0
    • No longer reexport num-traits.
  • 0.1.3
    • Update to num-traits 0.2 (semver compatible).
  • 0.1.2
    • Fix documentation warnings.
    • Update dependencies.
  • 0.1.1
    • Documentation fixes.
  • 0.1.0
    • Initial release.

License

btoi is dual licensed under the Apache 2.0 and MIT license, at your option.

Dependencies

~155KB