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/RtmpaWgK9C/datom_store_1a6b427be03c.
print(store)
#> 
#> ── datom local store component 
#> • Path: /tmp/RtmpaWgK9C/datom_store_1a6b427be03c
#> • Validated: TRUE
unlink(tmp, recursive = TRUE)