# @totalpave/hashmap

> A generic hashmap collection class

Latest version **1.1.1** (published 2020-02-28) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install @totalpave/hashmap
pnpm add @totalpave/hashmap
yarn add @totalpave/hashmap
bun add @totalpave/hashmap
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 1.1.1 |
| Published | 2020-02-28 |
| First published | 2019-04-11 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Node | >=10.0.0 |
| Dependencies | 2 |
| Unpacked size | 443 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | norman.breau@totalpave.com |
| Maintainers | totalpaveinc |
| Keywords | dictionary, dict, hash, map, hashmap, totalpave, total, pave |

## Links

- npm: https://www.npmjs.com/package/@totalpave/hashmap
- Repository: https://github.com/totalpave/hashmap
- Homepage: https://github.com/totalpave/hashmap#readme
- Issues: https://github.com/totalpave/hashmap/issues
- npm.io page: https://npm.io/package/@totalpave/hashmap

## Dependencies (2)

- [@types/node](https://npm.io/package/@types/node.md) 12.12.11
- [@breautek/iterator](https://npm.io/package/@breautek/iterator.md) 2.0.1

## Alternatives

- [@gemini-wallet/core](https://npm.io/package/@gemini-wallet/core.md) — 515.6K weekly downloads
- [utility](https://npm.io/package/utility.md) — 416.6K weekly downloads
- [@primno/dpapi](https://npm.io/package/@primno/dpapi.md) — 7.2K weekly downloads
- [pi-readseek](https://npm.io/package/pi-readseek.md) — 3.7K weekly downloads
- [@emilia-protocol/verify](https://npm.io/package/@emilia-protocol/verify.md) — 1.1K weekly downloads

## Recent versions

- 1.1.1 (latest) — 2020-02-28
- 1.1.0 — 2020-02-27
- 1.0.2 — 2019-11-22
- 1.0.0 — 2019-11-05
- 0.0.5 — 2019-04-11
- 0.0.4 — 2019-04-11
- 0.0.3 — 2019-04-11
- 0.0.2 — 2019-04-11
- 0.0.1 — 2019-04-11

## README

# @totalpave/hashmap

[![Build Status](https://travis-ci.org/totalpave/hashmap.svg?branch=master)](https://travis-ci.org/totalpave/hashmap)

## Description

A generic hashmap collection class

## Installation

`npm install @totalpave/hashmap`

## Usage

```typescript
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_

---
_Source: https://npm.io/package/@totalpave/hashmap · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
