The Wayback Machine - https://web.archive.org/web/20211114170151/https://github.com/topics/single-header-lib
Skip to content
#

single-header-lib

Here are 164 public repositories matching this topic...

matchit.cpp
GunpowderGuy
GunpowderGuy commented Oct 19, 2021

Could having to use id variables be replaced with lambda parameters?
eg: instead of this

Id<string> text;
match(variant)(
pattern | as<string>(text) = [&] {
            std::cout << "Text message: " << *text << std::endl;
        })

this

match(variant)(
pattern | as<string> = [](const string& text) {
            std::cout << "Text message: " << text << std::endl;
  

Improve this page

Add a description, image, and links to the single-header-lib topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the single-header-lib topic, visit your repo's landing page and select "manage topics."

Learn more