Exemple #1
0
 /// Get a const pointer to the data
 const DataType* ptr() const { return isempty() ? static_cast<const DataType*>(0) : &front();}
Exemple #2
0
 /// \cond INTERNAL
 /// Get a pointer to the data
 DataType* ptr() { return isempty() ? static_cast<DataType*>(0) : &front();}