- convertHexDigit
byte convertHexDigit(byte c)
@param c An ASCII encoded character 0-9 a-f A-F
@return The byte value of the character 0-16.
- convertHexDigit
int convertHexDigit(char c)
@param c An ASCII encoded character 0-9 a-f A-F
@return The byte value of the character 0-16.
- convertHexDigit
int convertHexDigit(int c)
@param c An ASCII encoded character 0-9 a-f A-F
@return The byte value of the character 0-16.
- fromHexString
byte[] fromHexString(string s)
- parseInt
int parseInt(string s, int offset, int length, int base)
Undocumented in source. Be warned that the author may not have intended to support it.
- toBytes
T[] toBytes(string s)
- toHex
void toHex(byte b, Appendable buf)
Undocumented in source. Be warned that the author may not have intended to support it.
- toHex
void toHex(int value, Appendable buf)
Undocumented in source. Be warned that the author may not have intended to support it.
- toHex
void toHex(long value, Appendable buf)
Undocumented in source. Be warned that the author may not have intended to support it.
- toHexString
string toHexString(byte b)
Undocumented in source. Be warned that the author may not have intended to support it.
- toHexString
string toHexString(byte[] b)
Undocumented in source. Be warned that the author may not have intended to support it.
- toHexString
string toHexString(byte[] b, int offset, int length)
Undocumented in source. Be warned that the author may not have intended to support it.
- toHexString
string toHexString(const(ubyte)[] b, string separator, string prefix)
Undocumented in source. Be warned that the author may not have intended to support it.