@jymfony/datastructure
Advanced tools
Comparing version 0.1.0-alpha.11 to 0.1.0-alpha.12
{ | ||
"name": "@jymfony/datastructure", | ||
"version": "0.1.0-alpha.11", | ||
"version": "0.1.0-alpha.12", | ||
"description": "Jymfony Data Structures", | ||
@@ -21,4 +21,4 @@ "scripts": { | ||
"dependencies": { | ||
"@jymfony/exceptions": "0.1.0-alpha.11", | ||
"@jymfony/util": "0.1.0-alpha.11" | ||
"@jymfony/exceptions": "0.1.0-alpha.12", | ||
"@jymfony/util": "0.1.0-alpha.12" | ||
}, | ||
@@ -25,0 +25,0 @@ "devDependencies": { |
@@ -50,3 +50,3 @@ const GenericCollectionTrait = require('./Traits/GenericCollectionTrait'); | ||
*/ | ||
class BTree extends mix(undefined, GenericCollectionTrait) { | ||
class BTree extends mix(Object, GenericCollectionTrait) { | ||
/** | ||
@@ -53,0 +53,0 @@ * Comparison function can be defined passing it to cmp_function parameter. |
@@ -59,3 +59,3 @@ const GenericCollectionTrait = require('./Traits/GenericCollectionTrait'); | ||
class HashTable extends mix(undefined, GenericCollectionTrait) { | ||
class HashTable extends mix(Object, GenericCollectionTrait) { | ||
/** | ||
@@ -75,3 +75,2 @@ * Constructor. | ||
this._bucketSize = bucketSize; | ||
this.clear(); | ||
@@ -78,0 +77,0 @@ } |
@@ -28,3 +28,3 @@ const GenericCollectionTrait = require('./Traits/GenericCollectionTrait'); | ||
*/ | ||
class PriorityQueue extends mix(undefined, GenericCollectionTrait) { | ||
class PriorityQueue extends mix(Object, GenericCollectionTrait) { | ||
/** | ||
@@ -35,3 +35,2 @@ * Constructor. | ||
super(); | ||
this.clear(); | ||
@@ -38,0 +37,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
41759
+ Added@jymfony/exceptions@0.1.0-alpha.12(transitive)
+ Added@jymfony/util@0.1.0-alpha.12(transitive)
- Removed@jymfony/exceptions@0.1.0-alpha.11(transitive)
- Removed@jymfony/util@0.1.0-alpha.11(transitive)
Updated@jymfony/util@0.1.0-alpha.12