We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recursive
core
I've replaced Bool with it in remote but same thing is used by ReadOnlyStore and S3 in #37
Bool
ReadOnlyStore
S3
For the reference since it will move around
-- | Recursive, used by @addToStore@ newtype Recursive = Recursive { unRecursive :: Bool } deriving (Eq, Ord, Show) addRecursive, addNonRecursive :: Recursive -- | Add target directory recursively addRecursive = Recursive True -- | Add target directory non-recursively addNonRecursive = Recursive False
Maybe sum type / enum would be even better, draft
data Recursive = Recursive_Recursive Recursive_NonRecursive
sounds kind-of superfluous and very recursive 🙃
Also wondering where to put it, considering System.Nix.Store.Types
System.Nix.Store.Types
The text was updated successfully, but these errors were encountered:
8ac46de
No branches or pull requests
I've replaced
Bool
with it in remote but same thing is used byReadOnlyStore
andS3
in #37For the reference since it will move around
Maybe sum type / enum would be even better, draft
sounds kind-of superfluous and very recursive 🙃
Also wondering where to put it, considering
System.Nix.Store.Types
The text was updated successfully, but these errors were encountered: