Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/graphif/project-graph
/ enqueue
Method
enqueue
packages/data-structures/src/Queue.ts:5–7 ·
view source on GitHub ↗
(element: T)
Source
from the content-addressed store, hash-verified
3
4
// 入队操作
5
enqueue(element: T): void {
6
this.items.push(element);
7
}
8
9
// 出队操作
10
dequeue(): T | undefined {
Callers
5
LimitLengthQueue.test.ts
File · 0.45
Queue.test.ts
File · 0.45
addDistanceNumberAndDetect
Method · 0.45
enqueue
Function · 0.45
bombMove
Method · 0.45
Calls
1
push
Method · 0.45
Tested by
no test coverage detected