Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

astl

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

astl - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

9

algorithm/sorting.ts

@@ -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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc