Coder Social home page Coder Social logo

bowenfu / matchit.cpp Goto Github PK

View Code? Open in Web Editor NEW
543.0 15.0 20.0 2.79 MB

match(it): A lightweight single-header pattern-matching library for C++17 with macro-free APIs.

Home Page: https://bowenfu.github.io/matchit.cpp

License: Apache License 2.0

C++ 93.98% CMake 5.87% Shell 0.05% C 0.11%
pattern-matching cpp17 cpp17-library cpp cpp-library c-plus-plus c-plus-plus-17 header-only single-header-lib single-header single-header-library lightweight

matchit.cpp's Issues

lambda parameters instead of id variables

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;
        })

Add the library to vcpkg

Describe the solution you'd like
I would like to see this library added as a package for vcpkg.

Describe alternatives you've considered
Adding a header file is extremely convenient, but adding the package to vcpkg would provide automatic fixes and features for users.

Additional context
Since the library uses CMake already, I think the packaging for vcpkg shouldn't be difficult.

Thanks for the great effort!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.