Chris Maddox

Results 8 issues of Chris Maddox

We have a card with text where the content could be any length. We want to show the first 130 characters (or whatever) of text, then the user can click...

### First check - [X] I added a descriptive title to this issue. - [X] I used the GitHub search to find a similar request and didn't find it. -...

enhancement

Add `range(min, max\\nil)` function to return all keys from `min` to `max`. Based on the properties of RBTrees, we should be able to find the start and end nodes in...

Add a `min(n\\1)` function that returns a tree containing the bottom `n` elements

Add a `max(n\\1)` function that returns a tree containing the top `n` elements

Since we keep track of the size of subnodes, `at` should be pretty easy to achieve `log(n)` indexed lookup.

Arrays are just tuples underneath and a pain to deal with. https://github.com/SenecaSystems/RedBlackTree?

enhancement