header-only
Here are 968 public repositories matching this topic...
They should take single matcher during construction, and their match method should take a generic range, using the new generic matcher support.
Expected usage:
REQUIRE_THAT(get_keys(), AllMatch(KeyPattern({1, 2, 3})));
REQUIRE_THAT(get_numbers(), NoneMatch(IsOdd{}));
REQUIRE_THAT(get_strings(), AnyMatch(Contains("webscale") && !Contains("MongoDB")));the matching semantics
Crow is very fast and easy to use C++ micro web framework (inspired by Python Flask)
-
Updated
Aug 24, 2020 - C++
-
Updated
Nov 13, 2020 - C++
OpenGL Mathematics (GLM)
-
Updated
Nov 26, 2020 - C++
Gaming meets modern C++ - a fast and reliable entity component system (ECS) and much more
-
Updated
Nov 26, 2020 - C++
A C++ header-only HTTP/HTTPS server and client library
-
Updated
Nov 22, 2020 - C++
The fastest feature-rich C++11/14/17/20 single-header testing framework
-
Updated
Nov 23, 2020 - C++
A Compile time PCRE (almost) compatible regular expression matcher.
-
Updated
Nov 16, 2020 - C++
Static reflection for enums (to string, from string, iteration) for modern C++, work with any enum type without any macro or boilerplate code
-
Updated
Nov 25, 2020 - C++
Activity Indicators for Modern C++
-
Updated
Nov 16, 2020 - C++
Functional Programming Library for C++. Write concise and readable C++ code.
-
Updated
Nov 26, 2020 - C++
Your standard library for metaprogramming
-
Updated
Nov 23, 2020 - C++
Header-only, event based, tiny and easy to use libuv wrapper in modern C++ - now available as also shared/static library!
-
Updated
Nov 17, 2020 - C++
Parsing Expression Grammar Template Library
-
Updated
Nov 26, 2020 - C++
C++ compile-time enum to string, iteration, in a single header file
-
Updated
Nov 8, 2020 - C++
A curated list of awesome header-only C++ libraries
-
Updated
Nov 10, 2020
Cross-platform C++11 header-only library for memory mapped file IO
-
Updated
Nov 6, 2020 - C++
Portable, simple and extensible C++ logging library
-
Updated
Oct 23, 2020 - C++
Header-only C++ binding for libzmq
-
Updated
Nov 26, 2020 - C++
Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
-
Updated
Oct 20, 2020 - C++
Nameof operator for modern C++, simply obtain the name of a variable, type, function, macro, and enum
-
Updated
Nov 18, 2020 - C++
-
Updated
Oct 6, 2020 - C
Argh! A minimalist argument handler.
-
Updated
Sep 25, 2020 - C++
Header-only library for using Keras models in C++.
-
Updated
Oct 14, 2020 - C++
easy to use, powerful & expressive command line argument parsing for modern C++ / single header / usage & doc generation
-
Updated
Sep 12, 2020 - C++
A Template Engine for Modern C++
-
Updated
Nov 25, 2020 - C++
a compile-time, header-only, dimensional analysis and unit conversion library built on c++14 with no dependencies.
-
Updated
Nov 25, 2020 - C++
A Header-Only cross-platform C++ TCP network library . Can use vcpkg(https://github.com/Microsoft/vcpkg/tree/master/ports/brynet) install
-
Updated
Nov 23, 2020 - C++
Improve this page
Add a description, image, and links to the header-only topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the header-only topic, visit your repo's landing page and select "manage topics."


I think we should patch test/CMakeLists.txt to always use
-Wall -Werroron *nix and the corresponding MSVC flags. It is way too easy to overlook a warning in the CI output as #1797 has shown.@nlohmann Thoughts?