codec-abc
codec-abc
Thanks for the info. If you manage to do a sample using this library please let me know.
Re-reading my first message, I realized that I worded my thought poorly. I am not against underflow/overflow/clamping/division by 0 per se. I just think these kind of behavior are not...
For sake of completeness, I think integer conversion - when choosing a new type that cannot hold all values of the previous- should be part of this issue too. For...
Totally agree with 1. For 2, I mostly agree and I think too that in most cases the choice between BigEndian and LittleEndian is known statically and it is better....
Since this issue is focused on a very small point it shouldn't be too hard to write a proper RFC (and even the implementation after that) which I will try...
The changes are to add the following stateless functions to the standard library ```pony fun peek_X_be(seq: ReadSeq[U8] box, offset: USize): X? fun peek_X_le(seq: ReadSeq[U8] box, offset: USize): X? fun peek_X[E:...
I do agree. Also I think it makes sense to add the reverse ones at the same time, ie ```pony fun x_to_U8_be(x: X): ReadSeq[U8] fun x_to_U8_le(x: X): ReadSeq[U8] fun x_to_U8[E:...
Thanks for taking time to answer me. While we are at it, do you mind elaborating on functional programming and mutability. Looking at the pong example, it seems Mun is...
Since I am the one who asked for Windows support I will puts my 2 cents in. I am a Windows developer with little knowledge with Elixir/Erlang and Elm and...
@mlangkabel Do you mind sharing a sample C# project with a matching SourceTrail project that is known to work please?