In erlang reference mannual, the Bit Syntax Expressions section, about the binary Size, the manual said:<br>"In matching, this default value is only
valid for the very last element. All other bit string or binary 
elements in the matching must have a size specification."<br>we know the default size for integer is 8, float is 64, binary is the whole bytes.<br>for example:<br>> <<A, B, C>> = <<1, 2, 3>>.<br>
I think in this pattern match, the variables A, B, C all use the dafault Size.<br>Is it a conflict with reference manual?<br>thanks!<br>