-
-
Notifications
You must be signed in to change notification settings - Fork 49
Home
Jeongho Nam edited this page Jun 16, 2016
·
13 revisions
GitHub Repository: https://github.com/samchon/stl
STL (Standard Template Library) Containers and Algorithms for TypeScript
TypeScript-STL is a TypeScript's Standard Template Library who is migrated from C++ STL. Most of classes and functions of STL have implemented. Just enjoy it.
You can learn and explore about TypeScript-STL more deeply with such below:
npm install -g typescript-stl
// SOMEWHERE PLACE NODE AND STL HEADERS EXIST
/// <reference path="node.d.ts" />
/// <reference path="typescript-stl.d.ts" />
global["std"] = require("typescript-stl");
let list: std.List<string> = new std.List<string>();
var std = require("typescript-stl");
var list = new std.List();
<script src="typescript-stl.js"></script>
/// <reference path="typescript-stl.d.ts" />