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

Method default

src/common/queue.rs:51–54  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

49
50impl<T> Default for Queue<T> {
51 fn default() -> Self {
52 let ll = LinkedList::default();
53 Self { ll }
54 }
55}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected