std::filesystem::recursive_directory_iterator::recursion_pending
Min standard notice:
Returns true if the next increment will cause the directory currently referred to by *this to be iterated into.
# Declarations
bool recursion_pending() const;
(since C++17)
# Return value
true if the next increment will iterate into the currently referred directory, false otherwise.
# Example
This section is incompleteReason: no example