libstxxl

C++ STL implementation for processing extra large datasets

brewmacoslinux
Try with needOr install directly
Source

About

C++ implementation of STL for extra large data sets

Commands

libstxxl

Examples

Include libstxxl headers in C++ project to use external memory data structures$ g++ -I$(brew --prefix libstxxl)/include myprogram.cpp -o myprogram -L$(brew --prefix libstxxl)/lib -lstxxl
Use stxxl::vector for handling datasets larger than available RAM$ echo '#include <stxxl/vector>' > test.cpp && g++ -I$(brew --prefix libstxxl)/include test.cpp
Link libstxxl library in CMake project configuration$ cmake -DLIBSTXXL_INCLUDE_DIR=$(brew --prefix libstxxl)/include -DLIBSTXXL_LIBRARY=$(brew --prefix libstxxl)/lib .