MCPcopy Create free account
hub / github.com/douchuan/algorithm / Queue

Class Queue

src/common/queue.rs:14–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12use crate::ll::LinkedList;
13
14pub struct Queue<T> {
15 ll: LinkedList<T>,
16}
17
18impl<T> Queue<T> {
19 /// Adds the item to this queue

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected