Danny Robson
9eb2784d84
bitwise: convert popcount template into explicit overloads
popcount, popcountl, and popcountll need to be used for each appropriate fundamental type. It's easiest to just provide overloads for popcount for the few cases we have available than to deal with templates.
== libcruft A simple cross-platform C++ utility library. Supported compilers: >=clang-5.x, >=gcc7.x; specifically, we require cxx17 features such as structured bindings which aren't present in older compilers. No attempt has been made to compile under MSVC. === Environment Variables The following variables can be defined at runtime to change the library behaviour. DEBUG:: whether to initialise basic debugging features at load time. the value is irrelevant; the test is for whether the variable is defined. DEBUG_WAIT:: whether to wait for a debugger to attach before executing `main`. LOG_LEVEL:: minimum log level that will render to the logging stream. note that a given level may have been compiled out and may not be present, eg. DEBUG tends to only be present for debug builds. BREAK_LEVEL:: minimum log level that will trigger a breakpoint JOB_THREADS:: default number of threads to spin up for job queues. JOB_DEPTH:: the default size of the pending work item queue for a job queue. Ideally one would not resort to using these variables, but they may make debugging a little easier in some circumstances.
Description
Languages
C++
96%
Ragel
1.2%
CMake
1.1%
Meson
1.1%
Python
0.6%