MCPcopy Create free account
hub / github.com/PerroEngine/Perro / is_empty

Method is_empty

perro_source/api_modules/perro_runtime_api/src/sub_apis/node.rs:200–209  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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.

Callers 9

validate_constFunction · 0.45
validateFunction · 0.45
validate_dlcFunction · 0.45
validate_bodyFunction · 0.45
signal_connect_manyMethod · 0.45
is_specs_onlyMethod · 0.45
__query_base_type_maskFunction · 0.45
add_node_tagsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected