Srđan Panić

Results 4 issues of Srđan Panić

It might be convinient for collections to have a [fold/reduce](https://en.wikipedia.org/wiki/Fold_%28higher-order_function%29) function so that you may do something like this: ``` c void fn(void *e1, void *e2, void *result) { int...

feature request
meta

There should be a more convenient way to free data after it's removed from a container and it should be: - an optional operation - should not assume the same...

You should be able do perform a binary search on a sorted array.

feature request

Collections should have `*_filter` and `*_filter_mut` functions so that one may do something like this: ``` c bool predicate(void *e) { int el = *((int*) e); if (el > 5)...

feature request
meta