Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/RobTillaart/Arduino
/ prev
Method
prev
libraries/Set/Set.cpp:227–234 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
225
226
227
int Set::prev()
228
{
229
if (_current & 0x8000) return -1;
230
_current--;
231
uint8_t p = (uint8_t)_current / 8;
232
uint8_t q = (uint8_t)_current & 7;
233
return findPrev(p, q);
234
}
235
236
237
int Set::last()
Callers
1
unittest
Function · 0.80
Calls
no outgoing calls
Tested by
1
unittest
Function · 0.64