forked from Yomguithereal/mnemonist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fixed-stack.d.ts
36 lines (31 loc) · 891 Bytes
/
fixed-stack.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
* Mnemonist FixedStack Typings
* =============================
*/
import {IArrayLikeConstructor} from './utils/types';
export default class FixedStack<T> implements Iterable<T> {
// Members
capacity: number;
size: number;
// Constructor
constructor(ArrayClass: IArrayLikeConstructor, capacity: number);
// Methods
clear(): void;
push(item: T): number;
pop(): T | undefined;
peek(): T | undefined;
forEach(callback: (item: T, index: number, stack: this) => void, scope?: any): void;
toArray(): Iterable<T>;
values(): IterableIterator<T>;
entries(): IterableIterator<[number, T]>;
[Symbol.iterator](): IterableIterator<T>;
toString(): string;
toJSON(): Iterable<T>;
inspect(): any;
// Statics
static from<I>(
iterable: Iterable<I> | {[key: string] : I},
ArrayClass: IArrayLikeConstructor,
capacity?: number
): FixedStack<I>;
}