BitBlob.this

Create a BitBlob from an hexadecimal string representation

  1. this(ubyte[] bin, bool isLE)
  2. this(const(char)[] hexstr)
    struct BitBlob(size_t Size)
    @safe pure nothrow @nogc
    this
    (
    scope const(char)[] hexstr
    )

Parameters

hexstr const(char)[]

String representation of the binary data in base 16. The hexadecimal prefix (0x) is optional. Can be upper or lower case.

Throws

If hexstr_without_prefix.length != (typeof(this).sizeof * 2).

Meta