xtl

C++ library for template metaprogramming and generic programming utilities.

brewmacoslinux
Try with needOr install directly
Source

About

X template library

Examples

check if xtl headers are installed and accessible$ brew list xtl && ls $(brew --prefix xtl)/include/xtl
use xtl in a C++ project with CMake$ echo 'find_package(xtl REQUIRED)' >> CMakeLists.txt
view xtl version and installation details$ brew info xtl
verify xtl header files are present in include directory$ find $(brew --prefix xtl)/include -name '*.hpp' | head -20
compile a C++ program that uses xtl templates$ g++ -I$(brew --prefix xtl)/include myprogram.cpp -o myprogram