This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef HAM_TUPLIFY_HPP | |
#define HAM_TUPLIFY_HPP | |
#include <tuple> | |
#include <type_traits> | |
#include <utility> | |
// There's examples and stuff towards the bottom | |
namespace ham |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef HAM_BITMASK_HPP_ | |
#define HAM_BITMASK_HPP_ | |
#include <type_traits> | |
// Namespace: ham_cpp ______________________________________________________ | |
// ========================================================================= // | |
namespace ham_cpp | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <type_traits> | |
namespace Tools | |
{ | |
namespace Conditions | |
{ | |
template<class...> |