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

AssemblyScript-STL (Standard Template Library, migrated from the C++)

  • 0.0.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-71.43%
Maintainers
1
Weekly downloads
 
Created
Source

AssemblyScript Standard Template Library

logo

GitHub license Build Status

Implementation of STL (Standard Template Library) for the AssemblyScript.

  • Containers
  • Iterators
  • Algorithms
  • Functors

ASTL is an open-source project providing features of the STL, migrated from the C++ to the AssemblyScript. You can enjoy those STL's own specific containers, algorithms and functors in the AssemblyScript.

Below components are list of the provided objects in the ASTL.

Features

Containers

  • Linear Conatainers
    • Vector
    • Deque
    • List
    • ForwardList
    • VectorBoolean
  • Associative Containers
    • Tree-structured ontainers
      • TreeSet
      • TreeMultiSet
      • TreeMap
      • TreeMultiMap
    • Hash-buckets based containers
      • HashSet
      • HashMultiSet
      • HashMap
      • HashMultiMap
  • Adaptor Containers
    • Linear adaptors
      • Stack
      • Queue
      • PriorityQueue
    • Associative adaptors
      • FlatSet
      • FlatMultiSet
      • FlatMap
      • FlatMultiMap

Algorithms

Not implemented yet.

Functors

Not implemented yet.

Installation

NPM Module

Installing the ASTL in the NodeJS environment is very easy. Just install with the npm.

npm install --save astl

Usage

import std from "astl";

function main(): void
{
    const map: std.TreeMap<i32, string> = new std.TreeMap();

    map.emplace(1, "First");
    map.emplace(4, "Fourth");
    map.emplace(5, "Fifth");
    map.set(9, "Nineth");

    for (let it = map.begin(); it != map.end(); it = it.next())
        trace(it.first.toString() + ", " + it.second);

    const it: std.TreeMap.Iterator<i32, string> = map.lower_bound(3);
    trace("lower_bound() of 3 is: " + it.first.toString());
}
main();

Keywords

FAQs

Package last updated on 08 Nov 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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