Skip to contents

Check if Object is a Local Store Component

Usage

is_datom_store_local(x)

Arguments

x

Object to test.

Value

TRUE or FALSE.

Examples

tmp <- tempfile("datom_store_")
store <- datom_store_local(path = tmp, validate = TRUE)
#>  Created store directory /tmp/Rtmp0YCcPh/datom_store_1a313f29cf56.
is_datom_store_local(store)
#> [1] TRUE
is_datom_store_local("not a store")
#> [1] FALSE
unlink(tmp, recursive = TRUE)