git clone https://github.com/wandvvs/qutil.git
cd qutil
sudo ./install.sh
For an example of how to use qutil in a CMake project, see the following CMakeLists.txt
tuple<Args...>
- tumple implementation with additional support functions:for_each
,transform
,find_if
,all_of
,none_of
,any_of
.constexpr_string<N>
- compile-time string.result<T,E>
- result type for error handling like RustResult<T, E>
.
dump(Args...)
- pretty print function for a values and iterable types like a Pythonprint
to the streamstd::cout
by default.dumpln(Args...)
read(source)
- read from file tostd::string
.
Check out examples of all the qutil features.