Package

purescript-array-search

Repository
JoelLefkowitz/purescript-array-search
License
MIT
Uploaded by
pacchettibotti
Published on
2023-02-26T19:19:51Z

Array search functions.

Status

Source Shields
Project latest_release license line_count language_count
Health documentation review_action codacy_quality
Repository open_issues closed_issues open_pulls closed_pulls
Activity contributors monthly_commits last_commit

Installation

bower install purescript-array-search

Usage

> some (\x -> x > 1) [ 1, 2, 3, 4 ]
true

> some (\x -> x > 5) [ 1, 2, 3, 4 ]
false
> every (\x -> x > 0) [ 1, 2, 3, 4 ]
true

> every (\x -> x > 1) [ 1, 2, 3, 4 ]
false
> findEachIndex (\x -> x > 1) [ 1, 2, 3, 4 ]
[1, 2, 3]
> smallest [ 1, 2, 3, 4 ]
1

> largest [ 1, 2, 3, 4 ]
4
> smallestWhere (\x -> x > 1) [ 1, 2, 3, 4 ]
2

> largestWhere (\x -> x > 1) [ 1, 2, 3, 4 ]
4
> smallestAbove 1 [ 1, 2, 3, 4 ]
2

> largestBelow 2 [ 1, 2, 3, 4 ]
1
  • purescript-arrays provides find, findLast, findIndex and findLastIndex
  • findEach is synonymous with filter

Tests

To run tests:

pulp test

Documentation

This repository's documentation is hosted on Pursuit.

Linters

To run linters:

nps lint

Formatters

To run formatters:

nps format

Continuous integration

This repository uses GitHub Actions to lint and test each commit. Each commit should be formatted and its corresponding documentation should be updated.

Versioning

This repository adheres to semantic versioning standards. For more information on semantic versioning visit semver.

Bump2version is used to version and tag changes. For example:

bump2version patch

Changelog

Please read this repository's changelog for details on changes that have been made.

Contributing

Please read this repository's guidelines on contributing for details on the process for submitting pull requests. Moreover, our code of conduct declares our collaboration standards.

Contributors

Remarks

Lots of love to the open source community!

Be kind to your mind Love each other It's ok to have a bad day

Modules
Data.Array.Search
Dependencies