table of contents
        
      
      
    
      other versions
    
    - Tumbleweed 2024.07.05-1.3
 - Leap-16.0
 - Leap-15.6
 
| std::filesystem::recursive_directory_iterator::recursion_pending(3) | C++ Standard Libary | std::filesystem::recursive_directory_iterator::recursion_pending(3) | 
NAME¶
std::filesystem::recursive_directory_iterator::recursion_pending - std::filesystem::recursive_directory_iterator::recursion_pending
Synopsis¶
bool recursion_pending() const; (since C++17)
  
   Returns true if the next increment will cause the directory currently
    referred to by
  
   *this to be iterated into.
  
   This function returns true immediately after construction or an increment.
    Recursion
  
   can be disabled via disable_recursion_pending().
Parameters¶
(none)
Return value¶
 true if the next increment will iterate into the currently
    referred directory, false
  
   otherwise.
Exceptions¶
Throws nothing.
Example¶
 This section is incomplete
  
   Reason: no example
Category:¶
* Todo no example
| 2024.06.10 | http://cppreference.com |