#bool #parse #parser

lenient_bool

A bool parser that is more accepting of various string bool representations

2 releases

Uses old Rust 2015

0.1.1 Nov 18, 2016
0.1.0 Nov 18, 2016

#33 in #bool

Download history 1/week @ 2023-11-27 50/week @ 2023-12-04 35/week @ 2023-12-11 4/week @ 2023-12-25 14/week @ 2024-01-01 6/week @ 2024-01-08 42/week @ 2024-01-15 2/week @ 2024-02-05 10/week @ 2024-02-12 78/week @ 2024-02-19 58/week @ 2024-02-26 23/week @ 2024-03-04 16/week @ 2024-03-11

175 downloads per month
Used in sklauncher

MIT/Apache

8KB
185 lines

LenientBool

crates.io

This crate provides the LenientBool type, which converts the following values into a boolean:

  • true
  • false
  • t
  • f
  • 0
  • 1

Comparisons are case-insensitive, so TRUE, tRue, and T all work, for example.

Documentation

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


lib.rs:

This module provides a single type, LenientBool, which implements FromStr to convert a string into a boolean. It is more accepting of various boolean representations than the standard bool function, performing case-insensitive matches against true, false, t, and f, yes, no, y, n, 0, and 1.

Errors

Any string not matching the above list will return a LenientBoolError.

Examples

extern crate lenient_bool;
use lenient_bool::LenientBool;

fn main() {
    let b : bool = "1".parse::<LenientBool>().unwrap().into();
    assert_eq!(b, true);
}

No runtime deps