Ben

Results 12 comments of Ben

RRB tries are a later iteration from bagwell, and are quite efficient at joining 2 lists. I believe funkia/list has some code you might be able to read easily to...

> > re 2 I agree the behaviour in the case isn't 100% clear or necessarily what a user would be expecting > > I know some web apps actually...

I was just about to ask about this, but I see you already had some thoughts. I think one concern I would have is integration with the web, in that...

just as an FYI, I've attempted a similar effort in porting CHAMP to JS [over here](https://github.com/rrbit-org/lib-xmark) I'm still spinning out variants and comparing benchmarks, but in general these tend to...

greate work @toxicFork, thank you so much for your efforts! Have you considered moving this project to a github organization? you could add some moderators to help carry some of...

small note: features can be made mutually exclusive quite easily ```rust #[cfg(all(feature = "runtime-uring", feature = "runtime-tokio"))] compile_error!("runtimes are mutually exclusive") ```

can't you just replace this with something like: ```javascript function Fragment(props) { return props.children; } ```

looks like closure compiler is messing with that. in 0.3.2 I found setting ```javascript list[Symbol.iterator] = list.prototype['undefined'] ``` clears seem to work

Hi, I don't mean to reopen a dead issue here if it is, but I just came across this. I've been working of [champ/lean maps](https://github.com/rrbit-org/lib-xmark) for some months now, it's...

in my experience tuning down https://github.com/rrbit-org/lib-rrbit - Array#slice is almost never faster - the array literal hack is specific to safari - inlining should be avoided, large functions exceed caching...