Learn R Programming

tiledb (version 0.30.2)

name,tiledb_dim-method: Return the tiledb_dim name

Description

Return the tiledb_dim name

Usage

# S4 method for tiledb_dim
name(object)

Value

string name, empty string if the dimension is anonymous

Arguments

object

tiledb_dim object

Examples

Run this code
ctx <- tiledb_ctx(limitTileDBCores())
d1 <- tiledb_dim("d1", c(1L, 10L))
name(d1)

d2 <- tiledb_dim("", c(1L, 10L))
name(d2)

Run the code above in your browser using DataLab