NumCpp
2.12.1
A Templatized Header Only C++ Implementation of the Python NumPy Library
Utils/cube.hpp
Go to the documentation of this file.
1
28
#pragma once
29
30
#include "
NumCpp/Core/Internal/StaticAsserts.hpp
"
31
32
namespace
nc::utils
33
{
34
//============================================================================
41
template
<
typename
dtype>
42
constexpr
dtype
cube
(dtype inValue)
noexcept
43
{
44
STATIC_ASSERT_ARITHMETIC_OR_COMPLEX
(dtype);
45
46
return
inValue * inValue * inValue;
47
}
48
}
// namespace nc::utils
StaticAsserts.hpp
STATIC_ASSERT_ARITHMETIC_OR_COMPLEX
#define STATIC_ASSERT_ARITHMETIC_OR_COMPLEX(dtype)
Definition:
StaticAsserts.hpp:56
nc::utils
Definition:
Utils/cube.hpp:33
nc::utils::cube
constexpr dtype cube(dtype inValue) noexcept
Definition:
Utils/cube.hpp:42
include
NumCpp
Utils
cube.hpp
Generated by
1.9.4