cnorxz/src/include/xpr/func.cc.h
2022-10-30 22:28:40 +01:00

24 lines
343 B
C++

#ifndef __cxz_func_cc_h__
#define __cxz_func_cc_h__
#include "func.h"
namespace CNORXZ
{
template <typename... T>
constexpr decltype(auto) ZeroF::operator()(const T&... as) const
{
return 0;
}
template <typename... T>
constexpr decltype(auto) NoF::operator()(const T&... as) const
{
return;
}
}
#endif