is.integral,tiledb_domain-method | R Documentation |
Returns TRUE is tiledb_domain is an integral (integer) domain
## S4 method for signature 'tiledb_domain'
is.integral(object)
object |
tiledb_domain |
TRUE if the domain is an integral domain, else FALSE
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.