galley-0.83.0: Conversations
Safe HaskellSafe-Inferred
LanguageGHC2021

Galley.API.MLS.Migration

Synopsis

Documentation

newtype ApAll f Source #

Similar to Ap f All, but short-circuiting.

For example: ApAll (pure False) <> ApAll (putStrLn "hi" $> True) does not print anything.

Constructors

ApAll 

Fields

Instances

Instances details
Monad f => Monoid (ApAll f) Source # 
Instance details

Defined in Galley.API.MLS.Migration

Methods

mempty :: ApAll f #

mappend :: ApAll f -> ApAll f -> ApAll f #

mconcat :: [ApAll f] -> ApAll f #

Monad f => Semigroup (ApAll f) Source # 
Instance details

Defined in Galley.API.MLS.Migration

Methods

(<>) :: ApAll f -> ApAll f -> ApAll f #

sconcat :: NonEmpty (ApAll f) -> ApAll f #

stimes :: Integral b => b -> ApAll f -> ApAll f #