MCPcopy Create free account
hub / github.com/LemonOSProject/LemonOS / begin

Method begin

Kernel/include/list.h:474–484  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

472 }
473
474 ListIterator<T> begin() const {
475 ListIterator<T> it;
476
477 if(!num || !front){
478 it.node = nullptr;
479 } else {
480 it.node = front;
481 }
482
483 return it;
484 }
485
486 ListIterator<T> end() const {
487 ListIterator<T> it;

Callers 15

BuildTokensFunction · 0.45
ParseFunction · 0.45
MouseDownMethod · 0.45
MouseRightMethod · 0.45
PaintMethod · 0.45
ScrollFunction · 0.45
DoAnsiCSIFunction · 0.45
PrintCharFunction · 0.45
BasicLexerMethod · 0.45
JSONParserMethod · 0.45
ParseMethod · 0.45
RemoveWidgetMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected