check if array is empty
| 417 | |
| 418 | /// check if array is empty |
| 419 | bool empty () const |
| 420 | { |
| 421 | return get_raw_ptr () == nullptr || get_length () == 0; |
| 422 | } |
| 423 | |
| 424 | /// use it to get pointer to row in matrix or to get pointer to matrix from 3d array |
| 425 | T *get_address (int index0) |
no outgoing calls
no test coverage detected