Created
September 6, 2012 02:49
-
-
Save halfelf/3650258 to your computer and use it in GitHub Desktop.
Concatenate binaries in erlang
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% 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