This package has been deprecated

Author message:

Use ES Map instead

@totalpave/hashmap
TypeScript icon, indicating that this package has built-in type declarations

1.1.1 • Public • Published

@totalpave/hashmap

Build Status

Description

A generic hashmap collection class

Installation

npm install @totalpave/hashmap

Usage

import HashMap from '@totalpave/hashmap';

let hashmap: HashMap<string> = new HashMap<string>();
hashmap.set('firstName', 'John')
       .set('lastName', 'Smith');

hashmap.get('firstName'); // 'John'

hashmap.keys(); // ['firstName', 'lastName']

API

TBD

Package Sidebar

Install

npm i @totalpave/hashmap

Weekly Downloads

0

Version

1.1.1

License

MIT

Unpacked Size

454 kB

Total Files

30

Last publish

Collaborators

  • tylerbreau
  • totalpaveinc
  • normanbreau