* garrow_tensor_is_contiguous: * @tensor: A #GArrowTensor. * * Returns: %TRUE if the tensor is contiguous, %FALSE otherwise. * * Since: 0.3.0 */
| 396 | * Since: 0.3.0 |
| 397 | */ |
| 398 | gboolean |
| 399 | garrow_tensor_is_contiguous(GArrowTensor *tensor) |
| 400 | { |
| 401 | auto arrow_tensor = garrow_tensor_get_raw(tensor); |
| 402 | return arrow_tensor->is_contiguous(); |
| 403 | } |
| 404 | |
| 405 | /** |
| 406 | * garrow_tensor_is_row_major: |
nothing calls this directly
no test coverage detected