NumCpp  2.1.0
A C++ implementation of the Python Numpy library
nbytes.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  uint64 nbytes(const NdArray<dtype>& inArray) noexcept
46  {
47  return inArray.nbytes();
48  }
49 } // namespace nc
nc::uint64
std::uint64_t uint64
Definition: Types.hpp:40
nc::NdArray< dtype >
NdArray.hpp
nc::nbytes
uint64 nbytes(const NdArray< dtype > &inArray) noexcept
Definition: nbytes.hpp:45
nc
Definition: Coordinate.hpp:45