MCPcopy Create free account
hub / github.com/apache/arrow / garrow_tensor_is_mutable

Function garrow_tensor_is_mutable

c_glib/arrow-glib/tensor.cpp:383–388  ·  view source on GitHub ↗

* garrow_tensor_is_mutable: * @tensor: A #GArrowTensor. * * Returns: %TRUE if the tensor is mutable, %FALSE otherwise. * * Since: 0.3.0 */

Source from the content-addressed store, hash-verified

381 * Since: 0.3.0
382 */
383gboolean
384garrow_tensor_is_mutable(GArrowTensor *tensor)
385{
386 auto arrow_tensor = garrow_tensor_get_raw(tensor);
387 return arrow_tensor->is_mutable();
388}
389
390/**
391 * garrow_tensor_is_contiguous:

Callers

nothing calls this directly

Calls 1

garrow_tensor_get_rawFunction · 0.85

Tested by

no test coverage detected