public pull(): T | undefined {
    return !this.isEmpty() ? this.items.pop() : undefined
  }