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/RtmpaWgK9C/datom_store_1a6b7b6a7192.
is_datom_store_local(store)
#> [1] TRUE
is_datom_store_local("not a store")
#> [1] FALSE
unlink(tmp, recursive = TRUE)