Hoogle Search
Within LTS Haskell 24.31 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
:# ) :: a -> Substitution' a -> Substitution' aAgda Agda.Syntax.Internal Substitution extension, `cons'. Γ ⊢ u : Aρ Γ ⊢ ρ : Δ ---------------------- Γ ⊢ u :# ρ : Δ, A
(
:# ) :: a -> Substitution' a -> Substitution' aAgda Agda.TypeChecking.Substitute Substitution extension, `cons'. Γ ⊢ u : Aρ Γ ⊢ ρ : Δ ---------------------- Γ ⊢ u :# ρ : Δ, A
(
:| ) :: a -> [a] -> NonEmpty aAgda Agda.Utils.List1 No documentation available.
(
:# ) :: Text -> [SeriesElem] -> MessageBlammo Blammo.Logging No documentation available.
-
capability Capability.Accessors Compose two accessors. This is not necessary in deriving via clauses, but in places where a transformer is expected as a type argument. E.g. wrapError.
-
capability Capability.Accessors No documentation available.
-
code-conjure Conjure.Engine function application between expressions
-
code-conjure Conjure.Expr function application between expressions
-
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.