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. (<:) :: JType -> JType -> TMonad ()

    jmacro Language.Javascript.JMacro.TypeCheck

    No documentation available.

  2. (<<:>) :: TMonad JType -> TMonad JType -> TMonad ()

    jmacro Language.Javascript.JMacro.TypeCheck

    No documentation available.

  3. (=:) :: ToJExpr a => JExpr -> a -> JStat

    jmacro Language.Javascript.JMacro.Util

    No documentation available.

  4. ($:) :: forall (m :: Type -> Type) a . (Monad m, ToHtml a) => (HtmlT m () -> HtmlT m ()) -> a -> HtmlT m ()

    lucid-extras Lucid.Bootstrap3

    No documentation available.

  5. (~:) :: forall (t :: ElfNodeType) (a :: ElfClass) . ElfXX t a -> ElfListXX a -> ElfListXX a

    melf Data.Elf

    Helper for ElfListCons

  6. (=:) :: k -> a -> Map k a

    miso Miso.Util

    Smart constructor for Attributes. This function is helpful when constructing numerous Attributes Example shown below.

    div_ [ style_  $ ("background" =: "red" <> "width" =: "250px" <> "height" =: "250px") ] []
    

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

    morpheus-graphql-client Data.Morpheus.Client.CodeGen.Internal

    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.

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

    morpheus-graphql-client Data.Morpheus.Client.CodeGen.Internal

    Retrieve the value associated with the given key of an Object. The result is Nothing if the key is not present or if its value is Null, or empty if the value cannot be converted to the desired type. This accessor is most useful if the key and value can be absent from an object without affecting its validity. If the key and value are mandatory, use .: instead.

  9. (*:*) :: forall (unit :: Rat) . KnownRat unit => RatioNat -> Time unit -> Time unit

    o-clock Time.Timestamp

    Operator version of timeMul.

    >>> 3 *:* sec 5
    15s
    
    >>> 2 *:* 3 *:* sec 5
    30s
    
    >>> 3 *:* 5 *:* sec 7
    105s
    
    >>> ms 2000 +:+ 2 *:* sec 3
    8s
    

  10. (+:+) :: forall (unitResult :: Rat) (unitLeft :: Rat) . KnownDivRat unitLeft unitResult => Time unitLeft -> Time unitResult -> Time unitResult

    o-clock Time.Timestamp

    Sums times of different units.

    >>> minute 1 +:+ sec 1
    61s
    

Page 98 of many | Previous | Next