Module stdin

Source
Expand description

Utility functions for reading from stdin.

Functions§

parse
Reads bytes from stdin into a String.
parse_line
Short-hand for parse(true).
read
Reads bytes from stdin into a String.
read_bytes
Reads bytes from stdin.
unwrap
Unwraps the given Option<T> or reads stdin into a String and parses it as T.
unwrap2
Shortcut for (unwrap(a), unwrap(b)).
unwrap_line
Short-hand for unwrap(value, true).
unwrap_vec
Reads stdin into a String and parses it as Vec<T> using whitespaces as delimiters if the given Vec<T> is empty.