BigInt.binaryDecode

Read integer value from a ubyte array with given size

  1. void binaryDecode(const(ubyte)* buf, size_t length)
    struct BigInt
    void
    binaryDecode
    (
    const(ubyte)* buf
    ,
    size_t length
    )
  2. void binaryDecode(Vector!(ubyte, ALLOC) buf)
  3. void binaryDecode(RefCounted!(Vector!(ubyte, ALLOC), ALLOC) buf)

Parameters

buf const(ubyte)*

ubyte array buffer containing the integer

length size_t

size of buf

Meta