Skip to contents

Only valid for integral (integer) domains

Usage

# S3 method for tiledb_domain
dim(x)

Arguments

x

tiledb_domain

Value

dimension vector

Examples

ctx <- tiledb_ctx(limitTileDBCores())
dom <- tiledb_domain(dims = c(tiledb_dim("d1", c(1L, 100L), type = "INT32"),
                              tiledb_dim("d2", c(1L, 100L), type = "INT32")))
dim(dom)
#> [1] 100 100