You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Defining the core API in datastore/datastore.nim such that it is intended to be consumed by implementors of Datastore via include instead of import.
Note: the last option is currently considered the least desirable per previous team discussion, but I've included it in the list of possible approaches because it can work even if there are reasons to avoid it.
The text was updated successfully, but these errors were encountered:
This will allow more flexibility re: key and data parameters.
Because Nim's
method
facility doesn't support generics and because multi-methods are deprecated, we'll need to choose from one of several options:datastore/datastore.nim
such that it is intended to be consumed by implementors ofDatastore
viainclude
instead ofimport
.Note: the last option is currently considered the least desirable per previous team discussion, but I've included it in the list of possible approaches because it can work even if there are reasons to avoid it.
The text was updated successfully, but these errors were encountered: