* @brief "is null" predicate * * This predicate is true if the iterator is "null". Such an iterator can be * created with the default constructor or by moving a top-level iterator up. */
| 1344 | * created with the default constructor or by moving a top-level iterator up. |
| 1345 | */ |
| 1346 | bool is_null () const |
| 1347 | { |
| 1348 | return m_uint == 0; |
| 1349 | } |
| 1350 | |
| 1351 | /** |
| 1352 | * @brief Increment operator |