@gabrielrufino/cube 1.0.28 → 1.0.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,6 +15,5 @@ export default class HashTableLinearProbing<T = number> implements IHashTableLin
15
15
  remove(key: string): T | null;
16
16
  private _hashCode;
17
17
  private _nextPositionOf;
18
- private _previousPositionOf;
19
18
  private [Symbol.toPrimitive];
20
19
  }
@@ -101,9 +101,6 @@ var HashTableLinearProbing = /** @class */ (function () {
101
101
  HashTableLinearProbing.prototype._nextPositionOf = function (position) {
102
102
  return (position + 1) % this._maxSize;
103
103
  };
104
- HashTableLinearProbing.prototype._previousPositionOf = function (position) {
105
- return (position + this.size - 1) % this._maxSize;
106
- };
107
104
  HashTableLinearProbing.prototype[Symbol.toPrimitive] = function (type) {
108
105
  var primitives = {
109
106
  default: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gabrielrufino/cube",
3
- "version": "1.0.28",
3
+ "version": "1.0.29",
4
4
  "description": "Data Structures and Algorithms made in Typescript",
5
5
  "main": "build/index.js",
6
6
  "scripts": {