aboutsummaryrefslogtreecommitdiffstats
path: root/packages/utils/src/abi_encoder/utils/queue.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/utils/src/abi_encoder/utils/queue.ts')
-rw-r--r--packages/utils/src/abi_encoder/utils/queue.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/utils/src/abi_encoder/utils/queue.ts b/packages/utils/src/abi_encoder/utils/queue.ts
index 3309d8ba2..53afb7e11 100644
--- a/packages/utils/src/abi_encoder/utils/queue.ts
+++ b/packages/utils/src/abi_encoder/utils/queue.ts
@@ -1,7 +1,7 @@
export class Queue<T> {
private _store: T[] = [];
- public push(val: T): void {
+ public pushBack(val: T): void {
this._store.push(val);
}
@@ -9,7 +9,7 @@ export class Queue<T> {
this._store.unshift(val);
}
- public pop(): T | undefined {
+ public popFront(): T | undefined {
return this._store.shift();
}
@@ -21,7 +21,7 @@ export class Queue<T> {
return backElement;
}
- public merge(q: Queue<T>): void {
+ public mergeBack(q: Queue<T>): void {
this._store = this._store.concat(q._store);
}
@@ -33,7 +33,7 @@ export class Queue<T> {
return this._store;
}
- public peek(): T | undefined {
+ public peekFront(): T | undefined {
return this._store.length >= 0 ? this._store[0] : undefined;
}
}