Module libherokubuildpack::write

source ·

Modules§

Structs§

Functions§

  • Constructs a writer that buffers written data until an ASCII/UTF-8 newline byte (b'\n') 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.