1.1.1 • Published 5 years ago

@totalpave/hashmap v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

@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

1.1.1

5 years ago

1.1.0

5 years ago

1.0.2

6 years ago

1.0.0

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago