MCPcopy
hub / github.com/jcubic/jquery.terminal / Stack

Interface Stack

js/jquery.terminal.d.ts:422–431  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

420 }
421
422 interface Stack<T> {
423 new(init?: T[]): Stack<T>;
424 data(): T[];
425 map(fn: (item: T, index?: number) => any): any[];
426 size(): number;
427 pop(): null | T;
428 push(): T;
429 top(): T;
430 clone(): Stack<T>;
431 }
432
433 interface Cycle<T> {
434 new(...args: T[]): Cycle<T>;

Callers 53

make_callback_pluginFunction · 0.65
keFunction · 0.65
make_callback_pluginFunction · 0.65
reverse_history_searchFunction · 0.65
lFunction · 0.65
style_propFunction · 0.65
CycleFunction · 0.65
StackFunction · 0.65

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…