Module

Data.Sequence.Internal

Package
purescript-sequences
Repository
hdgarrood/purescript-sequences

#(<$$>) Source

Operator alias for Data.Sequence.Internal.mapmap (non-associative / precedence 2)

#mapmap Source

mapmap :: forall f g a b. Functor f => Functor g => (a -> b) -> f (g a) -> f (g b)

#(<$$$>) Source

Operator alias for Data.Sequence.Internal.mapmapmap (non-associative / precedence 2)

#mapmapmap Source

mapmapmap :: forall f g h a b. Functor f => Functor g => Functor h => (a -> b) -> f (g (h a)) -> f (g (h b))

#strJoin Source

strJoin :: forall a. Show a => String -> Array a -> String

#Measured Source

class Measured a v  where

Members

Instances

#Elem Source

newtype Elem a

Constructors

Instances

#getElem Source

getElem :: forall a. Elem a -> a

#mapElem Source

mapElem :: forall f a. Functor f => f a -> f (Elem a)

#mapGetElem Source

mapGetElem :: forall f a. Functor f => f (Elem a) -> f a

#lift2Elem Source

lift2Elem :: forall a b. (b -> a -> b) -> b -> Elem a -> b

#liftElem Source

liftElem :: forall a b. (a -> b) -> Elem a -> b

#Key Source

data Key a

Constructors

Instances