0.1.0 • Published 5 years ago

@brianplace/data-structures v0.1.0

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

Data Structures in TypeScript

An implementation of .NET data structures for TypeScript.

This is an implementation of .NET style data structures for TypeScript. I've done my best to use the same names for classes and interfaces, so if you're used to .NET data structures, this should work for you.

npm install @brianplace/data-structures

0.1.0 Release

Public Interfaces

ICollection<T> IList<T>

Note: IEnumerable<T> is being implemented via the JavaScript Iterable<T> interface.

Public Classes

List<T>

Right now, the only methods/properties available are those that are directly on the interfaces themselves. I don't currently have any of the extension methods available, but I hope to make them available soon.