Module binrw::helpers

source ·
Expand description

Helper functions for reading and writing data.

Functions§

  • Creates a parser that builds a collection using items from the given iterable object as arguments for the parser.
  • Creates a parser that uses a given function to build a collection, using items from the given iterable object as arguments for the function.
  • Creates a parser that reads N items into a collection.
  • Creates a parser that uses a given function to read N items into a collection.
  • Reads a 24-bit unsigned integer.
  • Creates a parser that reads items into a collection until a condition is met. The terminal item is added to the collection.
  • Creates a parser that reads items into a collection until the end of the input stream.
  • Creates a parser that uses a given function to read items into a collection until the end of the input stream.
  • Creates a parser that reads items into a collection until a condition is met. The terminal item is discarded.
  • Creates a parser that uses a given function to read items into a collection until a condition is met. The terminal item is discarded.
  • Creates a parser that uses a given function to read items into a collection until a condition is met. The terminal item is added to the collection.
  • Writes a 24-bit unsigned integer.