Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save binarytemple/c11d80bc7bc4ea98680fa71bc19ec951 to your computer and use it in GitHub Desktop.
Save binarytemple/c11d80bc7bc4ea98680fa71bc19ec951 to your computer and use it in GitHub Desktop.
Erlang Bitstring notes
101> h().
81: bitstring_to_list(D)
-> [0,0,0,0,0,0,0,1]
85: bitstring_to_list(<<1>>)
-> [1]
87: bitstring_to_list(<<256:64>>)
-> [0,0,0,0,0,0,1,0]
89: binary:bin_to_list(<<256:64>>)
-> [0,0,0,0,0,0,1,0]
99: <<Z:64/integer>> = <<1:64>>
-> <<0,0,0,0,0,0,0,1>>
100: Z
-> 1

Moar experiments

113> X = list_to_bitstring([0,1,0]).
<<0,1,0>>
114> X.
<<0,1,0>>
115>
121> <<A:24/integer>> =  X.
<<0,1,0>>
<<0,1,0>>
125> A.
256
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment