Contructs a tiledb_dim
object
tiledb_dim(name, domain, tile, type, ctx = tiledb_get_context())
name | The dimension name / label string. This argument is required. |
---|---|
domain | The dimension (inclusive) domain. The dimension’s domain is
defined by a (lower bound, upper bound) vector, and is usually either of
type |
tile | The tile dimension tile extent. For type,
|
type | The dimension TileDB datatype string |
ctx | tiledb_ctx object (optional) |
tiledb_dim
object
ctx <- tiledb_ctx(limitTileDBCores()) tiledb_dim(name = "d1", domain = c(1L, 10L), tile = 5L, type = "INT32")#> An object of class "tiledb_dim" #> Slot "ptr": #> <pointer: 0x55e92011fd00> #>