Skip to contents

Displays store configuration.

Usage

# S3 method for class 'datom_store_local'
print(x, ...)

Arguments

x

A datom_store_local object.

...

Ignored.

Value

Invisible x.

Examples

tmp <- tempfile("datom_store_")
store <- datom_store_local(path = tmp, validate = TRUE)
#>  Created store directory /tmp/Rtmp0YCcPh/datom_store_1a31f09a977.
print(store)
#> 
#> ── datom local store component 
#> • Path: /tmp/Rtmp0YCcPh/datom_store_1a31f09a977
#> • Validated: TRUE
unlink(tmp, recursive = TRUE)