References
| binary_to_hex/1 | Convert the value from binary to hex. |
| binary_to_hexbin/1 | Convert the value from binary to hexbin. |
| binary_trim/1 | Trim Space from Binary. |
| hex_to_integer/1 | Convert the value from hex to integer. |
| hex_to_string/1 | Convert the value from hex to string. |
| integer_to_hex/2 | Convert the value from integer to hex. |
| integer_to_raw_binary/1 | Convert the value from integer to raw-binary. |
| integer_to_raw_binary/2 | Convert the value from integer to raw-binary. |
| raw_binary_to_integer/1 | Convert the value from binary to integer. |
binary_to_hex(Bin) -> string()
Bin = binary()
Convert the value from binary to hex
binary_to_hexbin(Bin) -> binary()
Bin = binary()
Convert the value from binary to hexbin
binary_trim(Bin) -> binary()
Bin = binary()
Trim Space from Binary
hex_to_integer(Hex) -> integer()
Hex = string()
Convert the value from hex to integer
hex_to_string(Hex) -> string()
Hex = string()
Convert the value from hex to string
integer_to_hex(I, Len) -> string()
I = integer()Len = pos_integer()
Convert the value from integer to hex
integer_to_raw_binary(I) -> binary()
I = integer()
Convert the value from integer to raw-binary
integer_to_raw_binary(I, Len) -> binary()
I = integer()Len = pos_integer()
Convert the value from integer to raw-binary
raw_binary_to_integer(Bin) -> integer()
Bin = binary()
Convert the value from binary to integer
Generated by EDoc