<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Mar 18, 2014 at 9:13 AM, Valentin Micic <span dir="ltr"><<a href="mailto:valentin@pixie.co.za" target="_blank">valentin@pixie.co.za</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div style="word-wrap:break-word">Hi all,<div><br></div><div>
(my apologies if this has been covered already)</div><div><br></div><div>Is there any reason why:</div><div><br></div><div><div><i><font face="Menlo">(twist@macbookv)820> list_to_binary( lists:seq(1,255) ).</font></i></div>
<div><i><font face="Menlo"><<1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,</font></i></div><div><i><font face="Menlo">  22,23,24,25,26,27,28,29,…>></font></i></div><div><br></div><div>works, but </div>
<div><br></div><div><font face="Menlo">(twist@macbookv)821> list_to_binary( lists:seq(1,256) ).</font></div><div><font face="Menlo">** exception error: bad argument</font></div><div><font face="Menlo">     in function  list_to_binary/1</font></div>
<div><font face="Menlo">        called as list_to_binary([1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,</font></div><div><font face="Menlo">                                  23,24,25,26,27,28|…])</font></div></div>
<div><br></div><div>breaks on <b>Erlang 16B02</b>? Was the limit to 255 characters for list_to_binary/1 always there and I just failed to see it before?</div></div></blockquote><div><br></div><div>This has nothing to do with the number of characters, but rather that you can't represent the value 256 in a byte:</div>
<div><br></div><div>1> list_to_binary([256]).</div><div>** exception error: bad argument</div><div>     in function  list_to_binary/1</div><div>        called as list_to_binary([256])</div><div><br></div><div>--steve</div>
</div></div></div>