cpp11

C++ is a popular and widely used mid-level language. It was designed as an extension of the C language.
Here are 2,894 public repositories matching this topic...
-
Updated
Dec 12, 2020 - C++
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
The doc is great! Hoewever some areas are still missing.
C++11 intoduced raw string literals: https://en.cppreference.com/w/cpp/language/string_literal
It is useful in many different areas, like strings with quotes, multiline strings and for example windows paths without escaping backslashes:
const char win_path[] = R"(c:\some\unescaped\path)";
The same cppreference link als
-
Updated
Dec 11, 2020 - C++
-
Updated
Dec 11, 2020 - C++
-
Updated
Dec 14, 2020 - C++
-
Updated
Mar 21, 2020 - Jupyter Notebook
-
Updated
Dec 9, 2020 - C++
-
Updated
Sep 7, 2020 - C++
Names map
and input
are exchanged mistakenly. By sense of Preconditions
paragraph they have to be exchanged I suppose, because there is no problem when map
and result
coincide (in current context).
-
Updated
Dec 9, 2020 - C++
-
Updated
Mar 3, 2020 - C++
-
Updated
Oct 1, 2020 - C++
-
Updated
Dec 8, 2020 - C++
-
Updated
Oct 20, 2020 - C++

-
Updated
Dec 7, 2020 - C++
It would be a cool proof of concept to see Flecs running in the browser. As a first step towards this, the ecs_graphics project could be ported as it showcases the bare minimum for a game with graphics (input + rendering).
Link to example:
https://github.com/SanderMertens/ecs_graphics
-
Updated
Dec 4, 2020 - C++
-
Updated
Dec 12, 2020 - C++
-
Updated
Dec 13, 2020 - C++
-
Updated
Dec 8, 2020 - C++
-
Updated
Dec 12, 2020 - C++
-
Updated
Dec 12, 2020 - C++
Is your feature request related to a problem? Please describe.
There is no way to pretty print a
simdjson::dom::element
to a string (or at least I did not find one). There is only a way to minify it to a string (or a stream).Describe the solution you'd like
A function like
to_pretty_string()
or a configurable stream manipulatorpretty
or a stand-alone classPrettyPrinter
. Wha