Skip to main content
Module

x/tstl/container/index.ts

TypeScript-STL (Standard Template Library, migrated from C++)
Go to Latest
File
//================================================================ /** * @packageDocumentation * @module std *///================================================================//--------// LINEAR CONTAINERS//--------// FORMAL CONTAINERSexport * from "./Vector";export * from "./Deque";export * from "./List";
// SPECIAL CONTAINERSexport * from "./VectorBoolean";export * from "./ForwardList";
//--------// ASSOCIATIVE CONTAINERS//--------// SETSexport * from "./TreeSet";export * from "./HashSet";export * from "./TreeMultiSet";export * from "./HashMultiSet";
// MAPSexport * from "./TreeMap";export * from "./HashMap";export * from "./TreeMultiMap";export * from "./HashMultiMap";
//--------// ADAPTOR CONTAINERS//--------// LINEARexport * from "./Stack";export * from "./Queue";export * from "./PriorityQueue";