Expand docstring of Store::querySubstitutablePathInfos

This commit is contained in:
Sebastian Ullrich 2021-08-09 15:58:50 +02:00
parent 12f50b6510
commit a0f97b1f54

View file

@ -430,9 +430,10 @@ public:
virtual StorePathSet querySubstitutablePaths(const StorePathSet & paths) { return {}; }; virtual StorePathSet querySubstitutablePaths(const StorePathSet & paths) { return {}; };
/* Query substitute info (i.e. references, derivers and download /* Query substitute info (i.e. references, derivers and download
sizes) of a map of paths to their optional ca values. If a path sizes) of a map of paths to their optional ca values. The info
does not have substitute info, it's omitted from the resulting of the first succeeding substituter for each path will be
infos map. */ returned. If a path does not have substitute info, it's omitted
from the resulting infos map. */
virtual void querySubstitutablePathInfos(const StorePathCAMap & paths, virtual void querySubstitutablePathInfos(const StorePathCAMap & paths,
SubstitutablePathInfos & infos) { return; }; SubstitutablePathInfos & infos) { return; };