Unfoldable1

This is the same as Unfoldable except the returned t value must always have at least 1 a value. As a result, it's actually harder to find a data type that can only implement Unfoldable1 but can't implement Unfoldable.

Definition

Code Definition

class Unfoldable1 t where
  unfoldr1 :: forall a b. (b -> Tuple a (Maybe b)) -> b -> t a

The only difference between Unfoldable and Unfoldable1 is the type signature for f. In both cases, the b value is inside of a Maybe:

-- Unfoldable
f :: forall a b. b -> Maybe (Tuple a b)

-- Unfoldable1
f :: forall a b. b -> Tuple a (Maybe b)

Laws

None

Derived Functions

Parallels to Unfoldable

ConceptUnfoldable
(t can be empty)
Unfoldable1
(t can't be empty)
Produce a t valuenonesingleton
Add an a n-many times to a t containerreplicatereplicate1
Run an applicative-based computation n-many times and store the results in a t containerreplicateAreplicate1A
Convert Maybe a to t afromMaybepossible, but not implemented

Unfoldable1 does not have a version of fromMaybe included, but I believe it is possible if one places a Monoid constraint on a and uses mempty when receiving a Nothing case.

Specific to Unfoldable1