Module

Data.List.Lazy.NonEmpty

Package
purescript-lists
Repository
purescript/purescript-lists

#toUnfoldable Source

#fromFoldable Source

fromFoldable :: forall a f. Foldable f => f a -> Maybe (NonEmptyList a)

#fromList Source

fromList :: forall a. List a -> Maybe (NonEmptyList a)

#singleton Source

singleton :: forall a. a -> NonEmptyList a

#head Source

head :: forall a. NonEmptyList a -> a

#tail Source

tail :: forall a. NonEmptyList a -> List a

#init Source

init :: forall a. NonEmptyList a -> List a

#uncons Source

uncons :: forall a. NonEmptyList a -> { head :: a, tail :: List a }

#length Source

length :: forall a. NonEmptyList a -> Int

#concatMap Source

concatMap :: forall b a. (a -> NonEmptyList b) -> NonEmptyList a -> NonEmptyList b

#appendFoldable Source

appendFoldable :: forall a t. Foldable t => NonEmptyList a -> t a -> NonEmptyList a

Re-exports from Data.List.Lazy.Types