Socket
Socket
Sign inDemoInstall

data.structure

Package Overview
Dependencies
1
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    data.structure

implementation of the basic structures


Version published
Weekly downloads
4
decreased by-42.86%
Maintainers
1
Install size
36.0 MB
Created
Weekly downloads
 

Readme

Source

npm npm

data.structure

Implementation of the basic structures of the language TypeScript

#Installation

Prerequisites

data.structure require TypeScript 2 or higher. npm

Install

npm install data.structure --save-dev

#Usage

import * as DS from 'data.structure'; // import of all structures
let numberList: DS.DoublyLinkedList<string> = new DS.DoublyLinkedList<string>();
  
import { LinkedList, DoublyLinkedList } from 'data.structure/src/linked-list'; // import lists
let numberList: LinkedList<number> = new LinkedList<number>();
  
numberList.add(123);

#Documentation Description of the basic methods and properties provided by structures.

Keywords

FAQs

Last updated on 30 Nov 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc