TechSY730

Results 42 comments of TechSY730

In my current dev branch, I successfully got the C++ random number generators working (even though this is a C program, I have a very lightweight wrapper for it). I...

Oh, I didn't notice that there aren't even Boolean2WhateverMaps generated. So I guess make this feature request only about BooleanSet

Yep, the whole point is that something like "BooleanOpenHashSet" is complete overkill for booleans. It should just be two boolean variables (whether true and false are present). All of the...

Hmm, looking over it, BooleanOpenHashSet and BooleanArraySet are the only concrete set type for booleans currently. There isn't even a SortedSet implementation. So I guess then we can just make...

I might be willing to try this. I just had my hands full with the Spliterator stuff at the time. However, implementing NavigableMap may be a better first step.

Given that a boolean _set_ can have only 4 possible states, {}, {false}, {true}, and {false, true}, it would make sense to have an immutable boolean set implementation alongside the...

What's the time frame you are looking at? That will help me schedule when I need to finish up my branches to be PR ready.

Why doesn't giving the raw entry/keySet to unmodifiableSet and then returning that work? Same for values and unmodifiableCollection.

Ah, I see. I think It can be done without defining a new composition class from scratch. Just make a (package private) variantion of `unmodifiableSet` that will also wrap the...

I've got a PR in progress but I would like to source some feedback before I go too much further with it.