MCPcopy Create free account
hub / github.com/RobTillaart/Arduino / isEmpty

Method isEmpty

libraries/Set/Set.cpp:111–120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109
110
111bool Set::isEmpty()
112{
113 uint8_t i = 32;
114 do
115 {
116 if (_mem[--i] > 0) return false;
117 }
118 while (i != 0);
119 return true;
120}
121
122
123bool Set::isFull()

Callers 1

unittestFunction · 0.80

Calls

no outgoing calls

Tested by 1

unittestFunction · 0.64