Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. (.:) :: SymVal a => SBV a -> SList a -> SList a

    sbv Data.SBV.List

    Prepend an element, the traditional cons.

  2. (.:) :: SChar -> SString -> SString

    sbv Data.SBV.String

    Prepend an element, the traditional cons.

  3. (=:) :: ChainStep a (ChainsTo a) => a -> ChainsTo a -> ChainsTo a

    sbv Data.SBV.Tools.KnuckleDragger

    Chain steps in a calculational proof.

  4. (@:) :: TagName -> [AttributePredicate] -> Selector

    scalpel-core Text.HTML.Scalpel.Core

    The @: operator creates a Selector by combining a TagName with a list of AttributePredicates.

  5. (.:) :: forall a (m :: Type -> Type) . a -> StreamK m a -> StreamK m a

    streamly-core Streamly.Internal.Data.StreamK

    Operator equivalent of cons.

    > toList $ 1 .: 2 .: 3 .: nil
    [1,2,3]
    

  6. (<$:) :: (CFunctor f, Dom f a, Dom f b) => a -> f b -> f a

    subcategories Control.Subcategory.Functor

    No documentation available.

  7. (<$:>) :: (CFunctor f, Dom f a, Dom f b) => (a -> b) -> f a -> f b

    subcategories Control.Subcategory.Functor

    No documentation available.

  8. (.:) :: FromJSON a => Object -> Key -> Parser a

    Agda Agda.Interaction.JSON

    Retrieve the value associated with the given key of an Object. The result is empty if the key is not present or the value cannot be converted to the desired type. This accessor is appropriate if the key and value must be present in an object for it to be valid. If the key and value are optional, use .:? instead.

  9. (.:!) :: FromJSON a => Object -> Key -> Parser (Maybe a)

    Agda Agda.Interaction.JSON

    Retrieve the value associated with the given key of an Object. The result is Nothing if the key is not present or empty if the value cannot be converted to the desired type. This differs from .:? by attempting to parse Null the same as any other JSON value, instead of interpreting it as Nothing.

  10. (.:!=) :: FromJSON a => Object -> Key -> Parser a

    Agda Agda.Interaction.JSON

    Retrieve the value associated with the given key of an Object. If the key is not present and the omittedField is Just x for some x, the result will be that x. This differs from .:?= by attempting to parse Null the same as any other JSON value, instead of using omittedField when it's Just.

Page 92 of many | Previous | Next