JPenuchot / jpp

J++ - Fancy functional-flavored C++ snippets

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

J++ | jpp

A collection of useful C++ code snippets.

Installation/Requirements

  • A decent C++17 compiler

File structure

├── LICENSE.txt
├── Makefile
├── config.mk                             //  Makefile config file
├── README.md                             //  This
├── include
│   └── jpp
│       ├── branch_over.hpp               //  Switch-over-enum generator
│       ├── function_helpers.hpp          //  Helpers for manipulating functions
│       ├── match_overload.hpp            //  ML-style match implementation
│       ├── parameter_pack_reduction.hpp  //  Arbitrary parameter pack reductor
│       └── unroll.hpp                    //  Arbitrary lambda unroller
├── src                                   //
│   └── main.cpp
└── tests                                 //  Tests
    │
   ...

About

J++ - Fancy functional-flavored C++ snippets

License:MIT License


Languages

Language:C++ 86.7%Language:Makefile 13.3%