dcodeIO

Results 484 comments of dcodeIO

The thought process so far was indeed to use a 64-bit value to represent an iterator. The information to encode into such a value would be 1) the index into...

Implementing something while ignoring 64-bit support for now is of course an option. Needs 29 bits for the reference back to the iterated object (can use the lower 3 bits...

Issues in play here: * A `Map` would need to return `i32 | null`, which is an invalid type. * A `Map` would have an ambiguous `null` return. * Not...

Over at AssemblyScript I could also use an option to disable specific errors. The use case here is that we had to stretch the spec a bit, for example to...