(self)
| 198 | } |
| 199 | |
| 200 | pub const fn is_empty(self) -> bool { |
| 201 | let mut index = 0; |
| 202 | while index < QUERY_TYPE_MASK_WORDS { |
| 203 | if self.bits[index] != 0 { |
| 204 | return false; |
| 205 | } |
| 206 | index += 1; |
| 207 | } |
| 208 | true |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | /// Query definition used by [`query!`](macro@crate::query) to filter nodes. |
no outgoing calls
no test coverage detected