Skip to main content

DA.NonEmpty

Type and functions for non-empty lists. This module re-exports many functions with the same name as prelude list functions, so it is expected to import the module qualified. For example, with the following import list you will have access to the NonEmpty type and any functions on non-empty lists will be qualified, for example as NE.append, NE.map, NE.foldl:

Module Snapshot

Lifecycle

Stable.

Notices

Status: active Introduced in: 3.4.9 Removed in: - Warnings: 0 Deprecations: 0 Deprecated since: -

Functions

cons

Prepend an element to a non-empty list.

append

Append or concatenate two non-empty lists.

map

Apply a function over each element in the non-empty list.

nonEmpty

Turn a list into a non-empty list, if possible. Returns None if the input list is empty, and Some otherwise.

singleton

A non-empty list with a single element.

toList

Turn a non-empty list into a list (by forgetting that it is not empty).

reverse

Reverse a non-empty list.

find

Find an element in a non-empty list.

deleteBy

The ‘deleteBy’ function behaves like ‘delete’, but takes a user-supplied equality predicate.

delete

Remove the first occurence of x from the non-empty list, potentially removing all elements.

foldl1

Apply a function repeatedly to pairs of elements from a non-empty list, from the left. For example, foldl1 (+) (NonEmpty 1 [2,3,4]) = ((1 + 2) + 3) + 4.

foldr1

Apply a function repeatedly to pairs of elements from a non-empty list, from the right. For example, foldr1 (+) (NonEmpty 1 [2,3,4]) = 1 + (2 + (3 + 4)).

foldr

Apply a function repeatedly to pairs of elements from a non-empty list, from the right, with a given initial value. For example, foldr (+) 0 (NonEmpty 1 [2,3,4]) = 1 + (2 + (3 + (4 + 0))).

foldrA

The same as foldr but running an action each time.

foldr1A

The same as foldr1 but running an action each time.

foldl

Apply a function repeatedly to pairs of elements from a non-empty list, from the left, with a given initial value. For example, foldl (+) 0 (NonEmpty 1 [2,3,4]) = (((0 + 1) + 2) + 3) + 4.

foldlA

The same as foldl but running an action each time.

foldl1A

The same as foldl1 but running an action each time.

Orphan Typeclass Instances

  • instance Eq a => Eq (NonEmpty a)
  • instance Show a => Show (NonEmpty a)
  • instance Ord a => Ord (NonEmpty a)
  • instance GetField hd (NonEmpty a) a
  • instance SetField hd (NonEmpty a) a
  • instance GetField tl (NonEmpty a) [a]
  • instance SetField tl (NonEmpty a) [a]
  • instance Semigroup (NonEmpty a)
  • instance Functor NonEmpty
  • instance Applicative NonEmpty
  • instance Action NonEmpty
  • instance Foldable NonEmpty
  • instance Traversable NonEmpty
  • instance IsParties (NonEmpty Party)