npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

naif

v0.0.7

Published

A naive set library.

Downloads

8

Readme

naif

Naive sets.

The sets are limited in what they can store b/c are based on aspic. Anything that is not serializable by JSON.stringify cannot be stored.

example usage

var naif = require('naif');

// call the naif function with zero or more array arguments:

var e = naif();

e.empty(); //true

var s1 = naif(['hello','there', 'this'],['is', 'is', 'is', 'a', 'set']);

s1.size();  //6

var s2 = naif(['hello','again'],['one',2, 3.1415, {'six' : 7}]);

s2.size(); //6

// we can do set operations using logical language:

var s1_intersect_s2 = s1.and(s2);

s1_intersect_s2.size();   //1

s1_intersect_s2.each(console.log);

// hello

// we can chain several operators.
// the following prints out each string that is in the union of s1 and s2

s1.or(s2).suchthat(function(e) {return e.constructor === String}).each(console.log);

// hello
// there
// this
// is
// a
// set
// again
// one

api

naif()

The naif(array*) function takes zero or more arrays and returns a set object;

set objects

Given a set called s, the following functions are supported:

  • s.size() : returns the number of elements in the set

  • s.each(fn) : the basic set iterator, where fn is a function of a single argument.

  • s.or(s2) : returns the union of s and s2, where both are sets returned by naif

  • s.and(s2) : returns the intersection of s and s2

  • s.not(s2) : returns the set difference, s less s2

  • s.xor(s2) : returns those elements in s or s2 but not in both

  • s.empty() : returns true if s is the empty set

  • s.all(p) : returns true if p(e) is true for each e in s

  • s.exists(p) : returns true if p(e) is true for at least one e in s

  • s.subset(s2) : returns true if s is a subset of s2

  • s.superset(s2) : returns true if s is a superset of s2

  • s.equal(s2) : returns true if s and s2 contain the same elements, up to the equality of their serialized contents (see aspic for details about serialization)

  • s.toArray() : returns an array of the set's contents.

  • s.mutable() : this extends s with new methods for mutability, returning a new mutable set that shares memory with s.

mutable set objects

Mutable sets have all of the functions above, plus two more:

  • ms.insert(x) : inserts x into the the set
  • ms.remove(x) : removes x from the set

oh goodie.