예제 #1
0
파일: matrix.hpp 프로젝트: BrechtBa/casadi
 /// Get a const pointer to the data
 const DataType* ptr() const { return isempty() ? static_cast<const DataType*>(0) : &front();}
예제 #2
0
파일: matrix.hpp 프로젝트: BrechtBa/casadi
 /// \cond INTERNAL
 /// Get a pointer to the data
 DataType* ptr() { return isempty() ? static_cast<DataType*>(0) : &front();}