Comparing version 0.0.4 to 0.0.5
@@ -125,3 +125,3 @@ import { Vector } from "../container/Vector"; | ||
{ | ||
let count: number = 0; | ||
let count: isize = 0; | ||
for (let j = first; j != last; j = j.next()) | ||
@@ -148,3 +148,7 @@ if (i == j) | ||
{ | ||
return is_sorted_until(first, last, comp) == last; | ||
const it: InputIterator = is_sorted_until<InputIterator, Comparator>(first, last, comp); | ||
const ret: boolean = (it == last); | ||
trace("is_sorted: " + ret.toString()); | ||
return ret; | ||
} | ||
@@ -163,3 +167,4 @@ | ||
first = first.next(); | ||
return last; | ||
} |
@@ -465,3 +465,3 @@ import { Vector } from "./Vector"; | ||
@inline() | ||
public source(): Vector<T> | ||
public source(): Deque<T> | ||
{ | ||
@@ -468,0 +468,0 @@ return this.source_; |
@@ -9,3 +9,3 @@ { | ||
}, | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"main": "./index.ts", | ||
@@ -17,4 +17,4 @@ "scripts": { | ||
"devDependencies": { | ||
"@assemblyscript/loader": "^0.17.1", | ||
"assemblyscript": "^0.17.1" | ||
"@assemblyscript/loader": "^0.17.2", | ||
"assemblyscript": "^0.17.2" | ||
}, | ||
@@ -21,0 +21,0 @@ "homepage": "https://github.com/samchon/tstl", |
@@ -52,6 +52,25 @@ # AssemblyScript Standard Template Library | ||
### Algorithms | ||
Not implemented yet. | ||
`<algorithm>` | ||
- binary_searche | ||
- heap | ||
- iterations | ||
- mathematics | ||
- merge | ||
- modifiers | ||
- partition | ||
- sorting | ||
- union_set | ||
### Functors | ||
Not implemented yet. | ||
`<exception>` | ||
- Exception | ||
- LogicError | ||
- RntimeError | ||
- `<functional>` | ||
- *comparators* | ||
- *hash* | ||
- `<utility>` | ||
- `<numeric>` | ||
- *operations* | ||
- *special_math* | ||
@@ -58,0 +77,0 @@ |
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
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
106
0
287363
110
7939