Skip to contents

Return the tiledb_dim domain

Usage

# S4 method for tiledb_dim
domain(object)

Arguments

object

tiledb_dim object

Value

a vector of (lb, ub) inclusive domain of the dimension

Examples

ctx <- tiledb_ctx(limitTileDBCores())
d1 <- tiledb_dim("d1", domain = c(5L, 10L))
domain(d1)
#> [1]  5 10