Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@thi.ng/associative

Package Overview
Dependencies
Maintainers
1
Versions
294
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thi.ng/associative

Alternative Set & Map data type implementations with customizable equality semantics & supporting operations

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.7K
decreased by-19.37%
Maintainers
1
Weekly downloads
 
Created
Source

@thi.ng/associative

npm (scoped)

About

This package provided alternative Set & Map data type implementations with customizable equality semantics, as well as common operations working with these types:

  • EquivSet & EquivMap types implement the full ES6 Set/Map APIs
  • Polymorphic set operations (union, intersection, difference) - works with both native and custom Sets and retains their types
  • Natural & selective joins (incl. key renaming, ported from Clojure)
  • Key-value pair inversion for maps and vanilla objects (K -> V => V -> K)
  • Single or multi-property index generation for maps and objects
  • Key selection & renaming for maps and objects

Why?

The native ES6 implementations use object reference identity to determine key containment, but often it's more practical and useful to use equivalent value semantics for this purpose, especially when keys are structured data (arrays / objects).

Note: It's the user's responsibility to ensure the inserted keys are kept immutable (even if technically they're not).

Comparison

// two objects w/ equal values
const a = { a: 1 };
const b = { a: 1 };

// using native implementations
const set = new Set();
set.add(a);
set.has(b);
// false

const map = new Map();
map.set(a, "foo");
map.get(b);
// undefined
import { EquivSet, EquivMap } from "@thi.ng/associative";

// using custom implementations
const set = new EquivSet();
set.add(a);
set.has(b);
// true

const map = new EquivMap();
map.set(a, "foo");
map.get(b);
// "foo"

Installation

yarn add @thi.ng/associative

Types

EquivSet

This Set implementation uses @thi.ng/dcons as backing storage for values and by default uses @thi.ng/api/equiv for equivalence checking.

EquivMap

This Map implementation uses a native ES6 Map as backing storage for key-value pairs and additional EquivSet for canonical keys. By default it too uses @thi.ng/api/equiv for equivalence checking of keys.

Usage examples

TODO... Please see tests and documentation in source code for now...

Authors

  • Karsten Schmidt

License

© 2017 - 2018 Karsten Schmidt // Apache Software License 2.0

Keywords

FAQs

Package last updated on 10 Apr 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc