Skip to content

Latest commit

 

History

45 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

is_printable

Determines whether a given text-based value is printable

Printable example

    use is_printable::IsPrintable;

    let hello = "hello";
    let is_printable = hello.is_printable();

    assert_eq!(is_printable, true);

Unprintable example

    use is_printable::IsPrintable;

    let bell = '\u{7}'
    let is_printable = bell.is_printable();

    assert_eq!(is_printable, false);

About

Determines whether a given character is printable

Resources

Stars

4 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages