cnorxz/src/include/xpr/func.cc.h
Christian Zimmermann c478bf0fae
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
more documentation + clean up
2024-02-03 22:02:01 +01:00

34 lines
547 B
C++

// -*- C++ -*-
/**
@file include/xpr/func.cc.h
@brief Special function objects implementations.
Copyright (c) 2024 Christian Zimmermann. All rights reserved.
Mail: chizeta@f3l.de
**/
#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