Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
111
bool 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
123
bool Set::isFull()
Callers
1
unittest
Function · 0.80
Calls
no outgoing calls
Tested by
1
unittest
Function · 0.64