NumCpp
2.4.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
bitwise_not.hpp
Go to the documentation of this file.
1
#pragma once
29
30
#include "
NumCpp/NdArray.hpp
"
31
32
namespace
nc
33
{
34
//============================================================================
35
// Method Description:
42
template
<
typename
dtype>
43
NdArray<dtype>
bitwise_not
(
const
NdArray<dtype>
& inArray)
44
{
45
return
~inArray;
46
}
47
}
// namespace nc
nc::NdArray< dtype >
NdArray.hpp
nc::bitwise_not
NdArray< dtype > bitwise_not(const NdArray< dtype > &inArray)
Definition:
bitwise_not.hpp:43
nc
Definition:
Coordinate.hpp:44
include
NumCpp
Functions
bitwise_not.hpp
Generated by
1.8.17