NumCpp  2.4.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
print.hpp
Go to the documentation of this file.
1 #pragma once
29 
31 #include "NumCpp/NdArray.hpp"
32 
33 #include <iostream>
34 
35 namespace nc
36 {
37  //============================================================================
38  // Method Description:
46  template<typename dtype>
47  void print(const NdArray<dtype>& inArray)
48  {
50 
51  std::cout << inArray;
52  }
53 } // namespace nc
StaticAsserts.hpp
nc::print
void print(const NdArray< dtype > &inArray)
Definition: print.hpp:47
STATIC_ASSERT_ARITHMETIC_OR_COMPLEX
#define STATIC_ASSERT_ARITHMETIC_OR_COMPLEX(dtype)
Definition: StaticAsserts.hpp:50
nc::NdArray< dtype >
NdArray.hpp
nc
Definition: Coordinate.hpp:44