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

nonempty-list

v3.7.0

Published

A list that always has at least one thing in it.

Downloads

8,942

Readme

NonEmpty List

An immutable data structure that acts like a list but guarantees that the list always has at least one item.

Constructor

Because a NonEmptyList<T> guarantees the presence of at least one T, the constructor requires a T object.

const strings = new NonEmptyList('hello', ['world'])
const numbers = new NonEmptyList(1, [2, 3, 4])

Other Construction Functions

fromValue

Create a NonEmptyList<T> from a single T.

const numbers = fromValue(1); // Equivalent to new NonEmptyList(1, [])

fromArray

Create a NonEmptyList<T> from an Array<T>, returning a Result<string, NonEmptyList<T>>. If the array is empty return an error result, otherwise return a new non-empty list in an okay result.

Useful when the array is not known statically.

const someArrayOfNumbers: Array<number> = calculateOrFetchTheArray();
const numbers: Result<string, NonEmptyList<number>> = fromArray(someArrayOfNumbers)

fromArrayMaybe

Similar to fromArray, but return a Maybe<NonEmptyList<T>>. Useful when the array is not known statically.

const someArrayOfNumbers: Array<number> = calculateOrFetchTheArray();
const numbers: Maybe<NonEmptyList<number>> = fromArrayMaybe(someArrayOfNumbers)

Attributes

first

The first element in the list, guaranteed to exist.

const numbers = new NonEmptyList(1, [2, 3, 4])
numbers.first // 1

rest

An array of the rest of the elements in the list. May be empty.

const numbers = new NonEmptyList(1, [2, 3, 4])
numbers.rest // [2, 3, 4]

const strings = new NonEmptyList('hello world', [])
strings.rest // []

length

The number of elements in the list.

const numbers = new NonEmptyList(1, [2, 3, 4])
numbers.length // 4

Methods

reverse

Returns a new NonEmptyList with the items reversed.

const numbers = new NonEmptyList(1, [2, 3, 4])
const reversed = numbers.reverse()
numbers.first // 1
reversed.first // 4

includes

Indicate whether the list includes some value.

const numbers = new NonEmptyList(1, [2, 3, 4])
numbers.includes(2) // true
numbers.includes(8) // false

take

Return an array of the first count elements.

const numbers = new NonEmptyList(1, [2, 3, 4])
numbers.take(2) // [1, 2]

drop

Return an array after dropping the first count elements.

const numbers = new NonEmptyList(1, [2, 3, 4])
numbers.drop(2) // [3, 4]

concat

Takes either an Array or another NonEmptyList, and returns a new NonEmptyList with the current and given lists concatenated.

const firstTwo = new NonEmptyList(1, [2])
const numbers = firstTwo.concat([3, 4])
numbers.first // 1
numbers.rest // [2, 3, 4]

every

Similar to Array.prototype.every(): for some predicate, does every element in the list return true?

const numbers = new NonEmptyList(1, [2, 3, 4])
numbers.every(n => n < 5) // true
numbers.every(n => n < 4) // false

some

Similar to Array.prototype.some(): for some predicate, does some element in the list return true?

const numbers = new NonEmptyList(1, [2, 3, 4])
numbers.some(n => n < 4) // true
numbers.some(n => n > 4) // false

find

Attempt to find an element where the given predicate returns true. Return Maybe<T>.

const numbers = new NonEmptyList(1, [2, 3, 4])
numbers.find(n => n < 4) // just(1)
numbers.find(n => n > 4) // nothing()

map

Similar to Array.prototype.map(): create a new NonEmptyList by evaluating the callback for every item in the current list.

const numbers = new NonEmptyList(1, [2, 3, 4])
const mapped = numbers.map(n => n * 2).map(String)
mapped.first // "2"
mapped.rest // ["4", "6", "8"]

and

Alias of map.

andThen

Similar to Array.prototype.flatMap(). Given a callback that returns a new NonEmptyList<U> when evaluated on an item T, return the result of mapping over the current list, and then flattening all the new lists into a single NonEmptyList<U>.

const numbers = new NonEmptyList(1, [2, 3, 4])
const createPair = (n: number) => new NonEmptyList(n, [n])
const pairs = numbers.andThen(createPair)
pairs.first // 1
pairs.rest // [1, 2, 2, 3, 3, 4, 4]

reduce

Similar to Array.prototype.reduce(): "reduce" the array of values into a single value.

const numbers = new NonEmptyList(1, [2, 3, 4])
numbers.reduce((sum, n) => sum + n) // 10

filter

Similar to Array.prototype.filter(): return an Array of values for which some predicate returns true.

const numbers = new NonEmptyList(1, [2, 3, 4])
numbers.filter(n => n % 2 === 0) // [2, 4]

sort

Returns a new NonEmptyList with the items sorted using Array.prototype.sort().

const scrambled = new NonEmptyList(3, [1, 4, 2])
const sorted = numbers.sort()
scrambled.first // 3
sorted.first // 1

join

Equivalent to Array.prototype.join().

const numbers = new NonEmptyList(1, [2, 3, 4])
numbers.join(', ') // "1, 2, 3, 4"

toArray

Return an Array of the elements in the list.

const numbers = new NonEmptyList(1, [2, 3, 4])
numbers.toArray() // [1, 2, 3, 4]