You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Installing TSTL in NodeJS is very easy. Just install with the npm
# Install TSTL from the NPM module
npm install --save tstl
Usage
importstdfrom"tstl";functionmain(): void{constmap: std.TreeMap<number,string>=newstd.TreeMap();map.emplace(1,"First");map.emplace(4,"Fourth");map.emplace(5,"Fifth");map.set(9,"Nineth");for(constitofmap)console.log(it.first,it.second);constit: std.TreeMap.Iterator<number,string>=map.lower_bound(3);console.log(`lower bound of 3 is: ${it.first}, ${it.second}`);}main();