https://github.com/aherrmann/unpacking_tuples_examples
https://github.com/aherrmann/unpacking_tuples_examples
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/aherrmann/unpacking_tuples_examples
- Owner: aherrmann
- License: mit
- Created: 2016-02-28T16:51:36.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-28T16:51:56.000Z (over 10 years ago)
- Last Synced: 2025-03-23T19:04:19.438Z (about 1 year ago)
- Language: C++
- Size: 2.93 KB
- Stars: 11
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Unpacking Tuples - Examples
Example codes for my blog-post [Unpacking Tuples in
C++14](http://aherrmann.github.io/programming/2016/02/28/unpacking-tuples-in-cpp14).
## Usage
Build using CMake as follows.
``` sh
src="$PWD"
mkdir ../build && cd ../build
cmake "$src"
# Or, to specifiy the compiler (e.g. Clang)
# cmake -DCMAKE_CXX_COMPILE=clang++
make -j && make test
```
## Requirements
* CMake >= 3.1
* C++ 14 compiler and standard library
Tested with the following compilers:
- GCC 5.3.0
- Clang 3.6.2
- Clang 3.7.1
## LICENSE
The code is licensed under the MIT license.