An-Algorithm-Library icon indicating copy to clipboard operation
An-Algorithm-Library copied to clipboard

A C++ algorithm library that extends the C++ standard algorithms found in <algorithm> & <numeric>

Results 6 An-Algorithm-Library issues
Sort by recently updated
recently updated
newest added
trafficstars

https://godbolt.org/z/rrnzhdoGn I just made some test code things appear to still work. ## Using for loop instead of while For loop can iterate and check the condition in the same...

https://github.com/codereport/An-Algorithm-Library/blob/1a94a025ad0a187cc0fd39bb6bcbc9a5791338b2/src/aal/algorithm.hpp#L9 If the user is using a `mutable` lambda. Then they can't use the algorithm. So might need to remove const from these. We might want to test a mutable...

AppVeyor was added with my Add Tests pull request. https://github.com/codereport/An-Algorithm-Library/pull/7 I'm not an expert on apple or clang. I might be able to get it to work via google. Anyone...

Add https://github.com/boost-ext/ut to the project to test it, and lead to having a CI run on it like it does for J. This will require compiler upgrades on to at...

I don't have much exp with catch2. Though I think it wouldn't take much work to setup. This site shows an example of how to add catch2 via cmake: https://cliutils.gitlab.io/modern-cmake/chapters/projects/fetch.html...

A variadic `zip()` might make implementing other variadic algorithms easy in terms of existing stl algorithms. It might also be useful on its own. The function would take variadic number...