MCPcopy Create free account
hub / github.com/careercup/CtCI-6th-Edition-JavaScript / constructor

Method constructor

chapter07/util/Queue.js:5–7  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3
4class Queue {
5 constructor() {
6 this._list = new LinkedList();
7 }
8
9 enqueue(value) {
10 this._list.append(value);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected