Modules

Mapper functions for use with the mapped and line_mapped functions.

Structs

A mapped writer that was created with the mapped or line_mapped function.
A tee writer that was created with the tee function.

Functions

Constructs a writer that buffers written data until an ASCII/UTF-8 newline byte (0x0A) is encountered and then applies the given mapping function to the data before passing the result to the wrapped writer.
Constructs a writer that buffers written data until given marker byte is encountered and then applies the given mapping function to the data before passing the result to the wrapped writer.
Constructs a writer that writes to two other writers. Similar to the UNIX tee command.