basedOpinionated utility library |
git clone git://git.dimitrijedobrota.com/based.git |
Log | Files | Refs | README | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING | |
empty_example.cpp (245B)
1 #include <algorithm> 2 3 #include "based/instrumentation.hpp" 4 5 int main() 6 { 7 based::count_operations( 8 16UL, 9 16UL * 1024 * 1024, 10 [](const auto& a, const auto& b) { std::sort(a, b); }, 11 based::normalize_nlogn); 12 13 return 0; 14 }