This repository was archived by the owner on May 21, 2021. It is now read-only.
Future features for class Atomic #2
jeanmathieupotvin
started this conversation in
Ideas
Replies: 1 comment
-
Revamp and simplify
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I/O
It could be nice to simplify the I/O interface of the class with just two methods
$read()
and$write()
.$write()
format = c("yaml", "json")
argument that would call private methods$as_yaml()
and$as_json()
.file
should not need a file extension as it is the case right now. It should simply be a file name. The file extension would be automatically appended by argumentformat
.$read()
$write()
, but we need a way to read them back. This$read()
method would need to assemble back aBlueprint
object from its text representation.Beta Was this translation helpful? Give feedback.
All reactions