Robert Eisele
Robert Eisele
@AlwinHughes @josdejong, - I won't add rounding functions, let's add them to math.js if needed - pow(w,x,y,z) and pow(r) is implemented - exp() is implemented, proven & tested - log()...
I like the idea of adding unicode symbols as actual operators. But I'm against 3√8 being pow(8,1/3)! I would see it as syntactical sugar for a square-root with literal. Even...
`3√8` is clear in the way that it means `3*sqrt(8)` I think, especially since it is a quite common form to write in math when factored out 3*3. I would...
"√4√4 results in √(4√4) instead of the desired (√4)√4." from the initial message of the PR. It was just an expression that I second that behavior.
> ehhh, so you also want to interpret √4√4 as (√4)*(√4) and not as √(4 * √4) too? In that case we're on the same page. Right :) Personally, I...
Hi currently you can't control that behavior, since the library is optimized for speed, not memory. The 10 elements are a reasonable pre-allocation at the beginning to save re-allocations in...
Just found the `slideToLoop()` method, but the behavior is the same as with `slideTo()`, without going in the closest direction.
No worries, I'm a little late here as well. Could you open an issue for me and propose an API syntax for the dhcp proxy? I would also be happy...
You must note, that this only works for non-negated bitsets. If `_ != 0`, you must truncate it yourself at a certain point. For "positive" bitsets (no `NOT` operation was...
> bs.data is a list of integer and each index of list stores 32 bits. So push/pop operation adds/removes 32 bits from the bitset. I know, I designed it like...