We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c23fed commit 12a75f5Copy full SHA for 12a75f5
hnix-store-core/src/System/Nix/Store.hs
@@ -92,8 +92,8 @@ data StoreEffects rootedPath validPath m =
92
fromRootedPath :: !(rootedPath -> Path)
93
, -- | Project out the underlying 'rootedPath' from a 'validPath'
94
fromValidPath :: !(validPath -> rootedPath)
95
- , -- | Is the given path valid?
96
- validPath :: !(rootedPath -> m (Maybe validPath))
+ , -- | Which of the given paths are valid?
+ validPaths :: !(HashSet rootedPath -> HashSet validPath)
97
, -- | Get the paths that refer to a given path.
98
referrers :: !(validPath -> m (HashSet Path))
99
, -- | Get a root to the 'Path'.
0 commit comments