Skip to content

Instantly share code, notes, and snippets.

@n3ksus
Forked from halfelf/concat_binary.erl
Created August 22, 2017 08:12
Show Gist options
  • Save n3ksus/18baa3a870a3ba6033b071a428dd34f2 to your computer and use it in GitHub Desktop.
Save n3ksus/18baa3a870a3ba6033b071a428dd34f2 to your computer and use it in GitHub Desktop.
Concatenate binaries in erlang
% concat, binary
B1= <<1,2>>.
B2= <<3,4>>.
B3= <<B1/binary, B2/binary>>.
% <<1,2,3,4>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment