burst

Header-only C++ library with radix sort, lazy ranges, and iterators

brewmacoslinux
Try with needOr install directly
Source

About

Radix sort, lazy ranges and iterators, and more. Boost-like header-only library

Commands

burst

Examples

Include burst headers in C++ project for radix sort$ #include <burst/algorithm/radix_sort.hpp> burst::radix_sort(container.begin(), container.end());
Use lazy range operations in C++ code$ #include <burst/range/lazy_range.hpp> auto result = burst::make_lazy_range(container) | burst::take(10);
Verify installation by locating header files$ brew --prefix burst && ls $(brew --prefix burst)/include/burst