Hoogle Search
Within LTS Haskell 24.38 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
pattern (
:<>: ) :: () => ErrorMessage -> ErrorMessage -> ErrorMessageincipit-base Incipit.Base Put two pieces of error message next to each other.
(
.<>. ) :: Keyword -> Keyword -> Keywordsql-words Language.SQL.Keyword.Concat Binary not eq operator for SQL expression.
-
type-level-show TypeLevelShow.Doc No documentation available.
(
:<>: ) :: Doc s -> Doc s -> Doc stype-level-show TypeLevelShow.Doc append docs next to each other
-
composable-associations Data.ComposableAssociation A type representing the composition of a base type (which can be serialized into a key-value structure) along with a key-value type. This type exists as a way to compose a haskell value that has a key-value representation (ex: a haskell record where its fields are keys to their values) with additional key-value associations into a single key-value object. This is intended for use with Association to add additional key-values to a type for the purposes of serialization/deserialization. For example:
>>> data User = User { name :: String, age :: Int } >>> let alice = User "Alice" 26 >>> let bob = User "Bob" 25 >>> let charlie = User "Charlie" 27 >>> let bobsFriends = [alice, charlie] >>> bobAndFriends :: User :<> Association "friends" [User] >>> let bobAndFriends = bob :<> Association Proxy bobsFriendsWhile (bob, bobsFriends) contains the same values as bobAndFriends, it lacks information about how to combine bob and bobsFriends together into a single serialized key-value object (as well as how to deserialize that back into haskell values). (
:<> ) :: base -> assoc -> (:<>) base assoccomposable-associations Data.ComposableAssociation No documentation available.
(
?<> ) :: (ToBool bool, Monoid a) => bool -> a -> acond Control.Conditional Conditional monoid operator. If the predicate is False, the second argument is replaced with mempty. The fixity of this operator is one level higher than <>. It can also be used to chain multiple predicates together, like this:
even (length ls) ?<> not (null ls) ?<> ls
(
:<>: ) :: forall p a b . Grammar p a b -> Grammar p a b -> Grammar p a binvertible-grammar Data.InvertibleGrammar.Base Grammar alternation. Left operand is tried first.
(
$<> ) :: RAct x s => x -> s -> xlr-acts Data.Act.Act Infix synonym or ract The acting part is on the right of the operator (symbolized by <>) and the actee on the left (symbolized by $), hence the notation $<>.
(
.<> ) :: HSDoc n -> HSDoc n -> HSDoc nmorpheus-graphql-code-gen-utils Data.Morpheus.CodeGen.Printer No documentation available.