1.1.1 • Published 4 years ago

@totalpave/hashmap v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 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

4 years ago

1.1.0

4 years ago

1.0.2

4 years ago

1.0.0

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago