Module nom8::number::streaming

source ·
Expand description

Parsers recognizing numbers, streaming version

Functions

  • be_f32Deprecated
    Recognizes a big endian 4 bytes floating point number.
  • be_f64Deprecated
    Recognizes a big endian 8 bytes floating point number.
  • be_i8Deprecated
    Recognizes a signed 1 byte integer.
  • be_i16Deprecated
    Recognizes a big endian signed 2 bytes integer.
  • be_i24Deprecated
    Recognizes a big endian signed 3 bytes integer.
  • be_i32Deprecated
    Recognizes a big endian signed 4 bytes integer.
  • be_i64Deprecated
    Recognizes a big endian signed 8 bytes integer.
  • be_i128Deprecated
    Recognizes a big endian signed 16 bytes integer.
  • be_u8Deprecated
    Recognizes an unsigned 1 byte integer.
  • be_u16Deprecated
    Recognizes a big endian unsigned 2 bytes integer.
  • be_u24Deprecated
    Recognizes a big endian unsigned 3 byte integer.
  • be_u32Deprecated
    Recognizes a big endian unsigned 4 bytes integer.
  • be_u64Deprecated
    Recognizes a big endian unsigned 8 bytes integer.
  • be_u128Deprecated
    Recognizes a big endian unsigned 16 bytes integer.
  • doubleDeprecated
    Recognizes floating point number in text format and returns a f64.
  • f32Deprecated
    Recognizes a 4 byte floating point number
  • f64Deprecated
    Recognizes an 8 byte floating point number
  • floatDeprecated
    Recognizes floating point number in text format and returns a f32.
  • hex_u32Deprecated
    Recognizes a hex-encoded integer.
  • i8Deprecated
    Recognizes a signed 1 byte integer
  • i16Deprecated
    Recognizes a signed 2 byte integer
  • i24Deprecated
    Recognizes a signed 3 byte integer
  • i32Deprecated
    Recognizes a signed 4 byte integer
  • i64Deprecated
    Recognizes a signed 8 byte integer
  • i128Deprecated
    Recognizes a signed 16 byte integer
  • le_f32Deprecated
    Recognizes a little endian 4 bytes floating point number.
  • le_f64Deprecated
    Recognizes a little endian 8 bytes floating point number.
  • le_i8Deprecated
    Recognizes a signed 1 byte integer.
  • le_i16Deprecated
    Recognizes a little endian signed 2 bytes integer.
  • le_i24Deprecated
    Recognizes a little endian signed 3 bytes integer.
  • le_i32Deprecated
    Recognizes a little endian signed 4 bytes integer.
  • le_i64Deprecated
    Recognizes a little endian signed 8 bytes integer.
  • le_i128Deprecated
    Recognizes a little endian signed 16 bytes integer.
  • le_u8Deprecated
    Recognizes an unsigned 1 byte integer.
  • le_u16Deprecated
    Recognizes a little endian unsigned 2 bytes integer.
  • le_u24Deprecated
    Recognizes a little endian unsigned 3 bytes integer.
  • le_u32Deprecated
    Recognizes a little endian unsigned 4 bytes integer.
  • le_u64Deprecated
    Recognizes a little endian unsigned 8 bytes integer.
  • le_u128Deprecated
    Recognizes a little endian unsigned 16 bytes integer.
  • recognize_floatDeprecated
    Recognizes a floating point number in text format and returns the corresponding part of the input.
  • Recognizes a floating point number in text format
  • u8Deprecated
    Recognizes an unsigned 1 byte integer
  • u16Deprecated
    Recognizes an unsigned 2 bytes integer
  • u24Deprecated
    Recognizes an unsigned 3 byte integer
  • u32Deprecated
    Recognizes an unsigned 4 byte integer
  • u64Deprecated
    Recognizes an unsigned 8 byte integer
  • u128Deprecated
    Recognizes an unsigned 16 byte integer