@algorithm.ts/circular-queue
Advanced tools
Comparing version 2.0.0-alpha.0 to 2.0.0
@@ -13,3 +13,3 @@ 'use strict'; | ||
init, | ||
free, | ||
destroy, | ||
front, | ||
@@ -33,3 +33,3 @@ end, | ||
} | ||
function free() { | ||
function destroy() { | ||
_MAX_SIZE = 0; | ||
@@ -36,0 +36,0 @@ _size = 0; |
@@ -9,3 +9,3 @@ function createCircularQueue() { | ||
init, | ||
free, | ||
destroy, | ||
front, | ||
@@ -29,3 +29,3 @@ end, | ||
} | ||
function free() { | ||
function destroy() { | ||
_MAX_SIZE = 0; | ||
@@ -32,0 +32,0 @@ _size = 0; |
@@ -19,3 +19,3 @@ /** | ||
*/ | ||
free(): void; | ||
destroy(): void; | ||
/** | ||
@@ -22,0 +22,0 @@ * Get the front element of the queue. |
{ | ||
"name": "@algorithm.ts/circular-queue", | ||
"version": "2.0.0-alpha.0", | ||
"version": "2.0.0", | ||
"description": "Circular queue in Typescript", | ||
@@ -42,3 +42,3 @@ "author": { | ||
}, | ||
"gitHead": "f48a558ad6decd6c5eee4b9a999ac085c9e19a22" | ||
"gitHead": "832e998c72a5e2de64cdca52655e2f0456a17ba2" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
12523
1