Expand description
A re-implementation of various std features. Not perfect nor intended to be.
Modules§
- borrow
- Various reference-related items.
- co
- The module for stable coroutines.
- fmt
- Core implementation for formatting operations.
- io
- Core implementation for I/O operations.
Macros§
- dbg
- Prints and returns the value of an expression for quick and dirty debugging.
- eprint
- Print formatted data to stderr.
- eprintln
- Print formatted data to stderr with a following newline.
- format
- Create a string with formatted data.
- format_
args - Create
Arguments
. - format_
args_ nl - Create
Arguments
with a following newline. - Print formatted data to stdout.
- println
- Print formatted data to stdout with a following newline.
- stylable
- Use this on any and all types implementing any kind of
Format
. This allows a given type to be styled with any modifier. - write
- Write formatted data into a
Write
r. - writeln
- Write formatted data into a
Write
r with a following newline.
Type Aliases§
- Never
- The
!
type.