sydow

Results 32 comments of sydow

This sounds fine. When you get this to work we need another layer on top, to produce psedudorandom integers in a given range, maybe the same for floating point etc.

The bug you found in equality tests for dictionaries (which should be fixed any minute) shows that you should do similar tests for different types of keys and values. I...

This comment touches also on questions raised in other issues. They all come down to "Why is this method not supported in Acton as in Python". They all (?) have...

Seems a good idea! > On 23 Dec 2024, at 12:35, Kristian Larsson ***@***.***> wrote: > > > @sydow @nordlander wdyt? > — > Reply to this email directly, view...

Hi, I don’t have strong opinions here. I agree that your examples looks a bit clumsy, but why build a dict of new elements here? You can write d =...

Well, I don’t know… I have no idea at all what the purpose of type $Box is, and I am just barely aware of the existence of, but have never...

I don't have more to add; at some point we should go through everything and replace all int types with explicitly sized types, but size_t is probably an improvement for...

I cannot reproduce this (using actonc version 0.24.1.20250219.16.4.30). Extending to a complete program ``` foo = 6 * 0 foo32 = u32(foo) actor main(env): print(foo, foo32) env.exit(0) ``` it compiles...

Interesting! I note three things: - I would have expected the constant UINT_MAX to be 2^32-1, but on your system it is 2^64-1 (which I would expect to be the...

Absolutely. I have neither strong views nor clever ideas. I could think of Bool for the protocol which contains only __bool__ and Str for the one with __str__ and __repr__....