Returns the number of dimensions of the tiledb_domain
Source: R/Domain.R
tiledb_ndim-tiledb_domain-method.Rd
Returns the number of dimensions of the tiledb_domain
Usage
# S4 method for class 'tiledb_domain'
tiledb_ndim(object)
Examples
dom <- tiledb_domain(dims = c(tiledb_dim("d1", c(0.5, 100.0), type = "FLOAT64")))
tiledb_ndim(dom)
#> [1] 1
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)
#> [1] 2