Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/LemonOSProject/LemonOS
/ FastList
Method
FastList
Kernel/include/list.h:82–87 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
80
class FastList {
81
public:
82
FastList()
83
{
84
front = NULL;
85
back = NULL;
86
num = 0;
87
}
88
89
~FastList() {
90
}
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected