0
0
mirror of https://github.com/keepassxreboot/keepassxc.git synced 2024-09-19 20:02:18 +02:00

Document walk methods

This commit is contained in:
vuurvlieg 2024-04-02 20:58:43 +02:00
parent 58197ab4b5
commit 4efb857652

View File

@ -180,7 +180,19 @@ public:
QList<const Group*> groupsRecursive(bool includeSelf) const;
QList<Group*> groupsRecursive(bool includeSelf);
// walk methods for traversing the tree efficiently (depth-first search)
/**
* Walk methods for traversing the tree (depth-first search)
*
* @param[in] includeSelf is the current group to be included or excluded
* if `false` the current group's entries will not be included either
* @param[in] groupVisitor functor that takes a single argument: ([const] Group*)
* the functor may return a bool to indicate whether to stop=`true` or continue=`false` traversing
* for a non-`bool` return-type the value is ignored and the traversing will continue as if `false` had been returned
* @param[in] entryVisitor functor that takes a single argument: ([const] Entry*)
* the functor may return a bool to indicate whether to stop=`true` or continue=`false` traversing
* for a non-`bool` return-type the value is ignored and the traversing will continue as if `false` had been returned
* @return `false` if the traversing completed without stop, or `true` otherwise
*/
template <CGroupVisitor TGroupCallable, CEntryVisitor TEntryCallable>
bool walk(bool includeSelf, TGroupCallable&& groupVisitor, TEntryCallable&& entryVisitor)
{