Tagged Questions
11
votes
4answers
3k views
How do I concatenate two binaries in Erlang?
How do I concatenate two binaries in Erlang?
For example, let's say I have:
B1 = <<1,2>>.
B2 = <<3,4>>.
How do I concatenate B1 and B2 to create a binary B3 which is ...
3
votes
1answer
77 views
Avoiding output of huge binary params when tracing with dbg
I have to debug some code that passes around huge binaries in the params.
For this I want to use a combination of dbg:tracer/0, dbg:p/2, dbg:tpl/3.
But if I do this all the binaries are output every ...
0
votes
1answer
47 views
Why are erlang lib changes not being incorporated into my project?
I'm using eclipse 3.6.2 with erlang 5.8.1.1 on a fairly large project that we're not ready to move to a more modern version of the language, so I'm stuck with a bug in eprof:
string_bp_mfa([{Mfa, ...