Skip to content

TheCymaera/iterable-weak-collections

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Iterable Weak Collections

Installation

Install via NPM.

npm install iterable-weak-collections

Information

This library adds IterableWeakSet and IterableWeakMap. They implement the built-in Set and Map interfaces.

import { IterableWeakMap, IterableWeakSet } from "iterable-weak-collections";
const map = new IterableWeakMap();
const set = new IterableWeakSet();
class IterableWeakMap<K extends Object, T> implements Map<K,T> {
	
}

class IterableWeakSet<K extends Object, T> implements Set<K,T> {
	
}

Technical Details

This library is implemented using WeakRef, which is supported in Node and most major browsers.

Example Uses

  • Sub-pub
  • Code diagnostics and monitoring

License

MIT License

All files can be used for commercial or non-commercial purposes. Do not resell. Attribution is appreciated but not due.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published