NumCpp
2.1.0
A C++ implementation of the Python Numpy library
bitwise_and.hpp
Go to the documentation of this file.
1
#pragma once
30
31
#include "
NumCpp/NdArray.hpp
"
32
33
namespace
nc
34
{
35
//============================================================================
36
// Method Description:
46
template
<
typename
dtype>
47
NdArray<dtype>
bitwise_and
(
const
NdArray<dtype>
& inArray1,
const
NdArray<dtype>
& inArray2)
48
{
49
return
inArray1 & inArray2;
50
}
51
}
// namespace nc
nc::NdArray< dtype >
NdArray.hpp
nc
Definition:
Coordinate.hpp:45
nc::bitwise_and
NdArray< dtype > bitwise_and(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)
Definition:
bitwise_and.hpp:47
include
NumCpp
Functions
bitwise_and.hpp
Generated by
1.8.17