Learn R Programming

tiledb (version 0.30.2)

is.integral,tiledb_domain-method: Returns TRUE is tiledb_domain is an integral (integer) domain

Description

Returns TRUE is tiledb_domain is an integral (integer) domain

Usage

# S4 method for tiledb_domain
is.integral(object)

Value

TRUE if the domain is an integral domain, else FALSE

Arguments

object

tiledb_domain

Examples

Run this code
ctx <- tiledb_ctx(limitTileDBCores())
dom <- tiledb_domain(dims = c(tiledb_dim("d1", c(1L, 100L), type = "INT32")))
is.integral(dom)
dom <- tiledb_domain(dims = c(tiledb_dim("d1", c(0.5, 100.0), type = "FLOAT64")))
is.integral(dom)

Run the code above in your browser using DataLab