public pop(): T | undefined {
        if (isNullOrUndefined(this.tail)) {
            return undefined;
        }