Commit ebe6640a authored by Dominik Charousset's avatar Dominik Charousset

tbind

parent 75d4768f
......@@ -31,4 +31,18 @@
#ifndef TBIND_HPP
#define TBIND_HPP
namespace cppa { namespace util {
template<template <typename, typename> class Tpl, typename Arg1>
struct tbind
{
template<typename Arg2>
struct type
{
static constexpr bool value = Tpl<Arg1, Arg2>::value;
};
};
} } // namespace cppa::util
#endif // TBIND_HPP
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment