Hoogle Search

Within LTS Haskell 24.20 (ghc-9.10.3)

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

  1. (.~.) :: RTorsor x g => x -> x -> g

    lr-acts Data.Act.Torsor

    Infix synonym for rdiff. This represents a point minus a point.

  2. (.*) :: M -> M -> M

    markov-chain-usage-model MarkovChain

    No documentation available.

  3. (.-) :: M -> M -> M

    markov-chain-usage-model MarkovChain

    No documentation available.

  4. (./) :: M -> M -> M

    markov-chain-usage-model MarkovChain

    No documentation available.

  5. (.*) :: forall (m :: Nat) (k :: Nat) (n :: Nat) a . Num a => Matrix m k a -> Matrix k n a -> Matrix m n a

    matrix-static Data.Matrix.Static

    Type safe matrix multiplication This is called (*) in matrix. Since the dimensions of the input matrices differ, they are not the same type and we cannot use Num's (*)

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

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

  8. (.=) :: (KeyValue e kv, ToJSON v) => Key -> v -> kv

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

    No documentation available.

  9. (.<>) :: HSDoc n -> HSDoc n -> HSDoc n

    morpheus-graphql-code-gen-utils Data.Morpheus.CodeGen.Printer

    No documentation available.

  10. type family (from :: Rat) ... (to :: Rat) :: [Rat]

    o-clock Time.Series

    Creates the list of time units in descending order by provided the highest and the lowest bound of the desired list. Throws the error when time units are not in the right order. Usage example:

    >>> seriesF @(Hour ... Second) $ hour 3 +:+ minute 5 +:+ sec 3 +:+ ms 123
    "3h5m3+123/1000s"
    

Page 70 of many | Previous | Next