Are arrays not fully supported in bb ?
I notice that the java.util.Arrays/fill
method is missing
Seems aset-boolean
is also missing
@didibus Can I ask about your use case for java.util.Arrays in bb?
Was trying to port a Sieve of Erastonthene algorithm for fun 😛
Without Arrays/fill, you need to manually loop and do multiple aset
if you want to set a range of indexes to a value. Also, not sure is using aset
over aset-boolean
for a (boolean-array)
is slower or anything, but it worked. Which made me wonder what's the point of aset-boolean
.