-
optional
C++11/14/17 std::optional with functional-style extensions and reference support (by TartanLlama)
For optional I would recommend Sy's implementation - optional
-
CodeRabbit
CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
-
For span I would recommend the guideline support library - gsl::span
-
For Variant I would recommend Michael Park's variant - mpark::variant
-
Check out https://abseil.io. It offers absl::optional, which is a backport of std::optional.
-
nonstd-lite
Parent of *-lite repositories, a migration path to post-C++11 features for pre-C++11 environments
Check out nonstd-lite
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
Related posts
-
Is there an exception that I could throw if there is a path that should never run.
-
An std::variant alternative for C++11
-
How to implicitly convert between pointers and integral types
-
Resources for experienced C programmer for C++20/17/13
-
Using std::variant and std::visit to transform-reduce a (rose) tree