rss-nostr-lambda/node_modules/tstl
David Rinaldo 8b11c41267 include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
..
algorithm include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
base include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
container include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
exception include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
experimental include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
functional include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
internal include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
iterator include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
numeric include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
ranges include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
thread include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
utility include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
CODE_OF_CONDUCT.md include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
CONTRIBUTING.md include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
LICENSE include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
README.md include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
index.d.ts include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
index.js include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
module.d.ts include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
module.js include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00
package.json include node_modules so release .zip is deployable 2023-11-24 17:44:25 -05:00

README.md

TypeScript Standard Template Library

TSTL logo

npm install --save tstl

GitHub license npm version Downloads Build Status FOSSA Status Chat on Gitter

Implementation of STL (Standard Template Library) in TypeScript.

  • Containers
  • Iterators
  • Algorithms
  • Functors

TSTL is an open-source project providing features of STL, migrated from C++ to TypeScript. You can enjoy the STL's own specific containers, algorithms and functors in the JavaScript. If TypeScript, you also can take advantage of type restrictions and generic programming with the TypeScript.

Below components are list of provided objects in the TSTL. If you want to know more about the TSTL, then please read the Guide Documents.

Features

Containers

Algorithms

Functors

Installation

NPM Module

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

# Install TSTL from the NPM module
npm install --save tstl

Usage

import std from "tstl";

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

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

    for (const it of map)
        console.log(it.first, it.second);

    const it: std.TreeMap.Iterator<number, string> = map.lower_bound(3);
    console.log(`lower bound of 3 is: ${x.first}, ${x.second}`);
}
main();

Appendix