tiledb_ndim-tiledb_domain-method: Returns the number of dimensions of the 'tiledb_domain'

tiledb_ndim,tiledb_domain-methodR Documentation

Returns the number of dimensions of the tiledb_domain

Description

Returns the number of dimensions of the tiledb_domain

Usage

## S4 method for signature 'tiledb_domain'
tiledb_ndim(object)

Arguments

object

tiledb_domain

Value

integer number of dimensions

Examples


dom <- tiledb_domain(dims = c(tiledb_dim("d1", c(0.5, 100.0), type = "FLOAT64")))
tiledb_ndim(dom)
dom <- tiledb_domain(dims = c(
  tiledb_dim("d1", c(0.5, 100.0), type = "FLOAT64"),
  tiledb_dim("d2", c(0.5, 100.0), type = "FLOAT64")
))
tiledb_ndim(dom)


tiledb documentation built on June 8, 2025, 11:14 a.m.