Skip to content

Instantly share code, notes, and snippets.

@arcusfelis
Created July 12, 2012 08:58
Show Gist options
  • Select an option

  • Save arcusfelis/3096842 to your computer and use it in GitHub Desktop.

Select an option

Save arcusfelis/3096842 to your computer and use it in GitHub Desktop.
bjoin.erl
bjoin([H|T], Delim) ->
BinT = << <<Delim/binary, X/binary>> || X <- T>>,
<<H/binary, BinT/binary>>.
bjoin([], _Delim) ->
<<>>.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment