NumCpp  2.1.0
A C++ implementation of the Python Numpy library
endianess.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:
44  template<typename dtype>
45  Endian endianess(const NdArray<dtype>& inArray) noexcept
46  {
47  return inArray.endianess();
48  }
49 } // namespace nc
nc::NdArray< dtype >
NdArray.hpp
nc::Endian
Endian
Enum for endianess.
Definition: Types.hpp:51
nc
Definition: Coordinate.hpp:45
nc::endianess
Endian endianess(const NdArray< dtype > &inArray) noexcept
Definition: endianess.hpp:45