MCPcopy Index your code
hub / github.com/trekhleb/javascript-algorithms / toString

Method toString

src/data-structures/queue/Queue.js:54–57  ·  view source on GitHub ↗

* @param [callback] * @return {string}

(callback)

Source from the content-addressed store, hash-verified

52 * @return {string}
53 */
54 toString(callback) {
55 // Return string representation of the queue's linked list.
56 return this.linkedList.toString(callback);
57 }
58}

Callers 1

Queue.test.jsFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected