is_printable

Crates.iois_printable
lib.rsis_printable
version0.0.11
sourcesrc
created_at2024-08-09 08:18:04.130063
updated_at2024-08-11 06:57:53.355234
descriptionDetermine whether a given text-based value is printable.
homepage
repositoryhttps://github.com/amab8901/is_printable
max_upload_size
id1330542
size17,694
Iron(III) Oxide (amab8901)

documentation

https://docs.rs/is_printable

README

Determines whether a given text-based value is printable.

Printable example:

    let hello = "hello";
    let is_printable = hello.is_printable();
    assert_eq!(is_printable, true);

Unprintable example:

    let bell = '\u{7}'
    let is_printable = bell.is_printable();
    assert_eq!(is_printable, false);
Commit count: 0

cargo fmt