Module

Data.Unconsable.NonEmpty

Package
purescript-unconsable
Repository
8084/purescript-unconsable

#Unconsable1 Source

class Unconsable1 s t | s -> t where

The user should interpret Unconsable1 s t constraint as "s is a non-empty container which can be converted to a possibly empty container t".

Members

  • uncons1 :: forall e. s e -> { head :: e, tail :: t e }

Instances