Hoogle Search

Within LTS Haskell 24.41 (ghc-9.10.3)

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

  1. type (::?) = 'Optional

    json-spec Data.JsonSpec

    Alias for Optional.

  2. (:|) :: a -> Sig s es a r -> ISig s (es :: Set Type) a r

    moffy Control.Moffy.Internal.Sig.Type

    No documentation available.

  3. pattern (:<||) :: a -> Seq a -> NESeq a

    nonempty-containers Data.Sequence.NonEmpty

    O(1). An abstract constructor for an NESeq that consists of a "head" a and a "tail" Seq a. Similar to :| for NonEmpty. Can be used to match on the head and tail of an NESeq, and also used to construct an NESeq by consing an item to the beginnong of a Seq, ensuring that the result is non-empty.

  4. pattern (:||>) :: Seq a -> a -> NESeq a

    nonempty-containers Data.Sequence.NonEmpty

    O(1). An abstract constructor for an NESeq that consists of a "init" Seq a and a "last" a. Similar to :| for NonEmpty, but at the end of the list instead of at the beginning. Can be used to match on the init and last of an NESeq, and also used to construct an NESeq by snocing an item to the end of a Seq, ensuring that the result is non-empty.

  5. pattern (:<||) :: a -> Seq a -> NESeq a

    nonempty-containers Data.Sequence.NonEmpty.Internal

    O(1). An abstract constructor for an NESeq that consists of a "head" a and a "tail" Seq a. Similar to :| for NonEmpty. Can be used to match on the head and tail of an NESeq, and also used to construct an NESeq by consing an item to the beginnong of a Seq, ensuring that the result is non-empty.

  6. pattern (:||>) :: Seq a -> a -> NESeq a

    nonempty-containers Data.Sequence.NonEmpty.Internal

    O(1). An abstract constructor for an NESeq that consists of a "init" Seq a and a "last" a. Similar to :| for NonEmpty, but at the end of the list instead of at the beginning. Can be used to match on the init and last of an NESeq, and also used to construct an NESeq by snocing an item to the end of a Seq, ensuring that the result is non-empty.

  7. type family wrap ::: wrapped

    optparse-generic Options.Generic

    A type family to extract fields wrapped using (<?>)

  8. type (p :: k -> k1 -> Type) :-> (q :: k -> k1 -> Type) = forall (a :: k) (b :: k1) . () => p a b -> q a b

    rebase Rebase.Prelude

    (:->) has a polymorphic kind since 5.6.

  9. (:|) :: a -> [a] -> NonEmpty a

    rebase Rebase.Prelude

    No documentation available.

  10. data h :. t

    sqlite-simple Database.SQLite.Simple

    A composite type to parse your custom data structures without having to define dummy newtype wrappers every time.

    instance FromRow MyData where ...
    
    instance FromRow MyData2 where ...
    
    then I can do the following for free:
    res <- query' c "..."
    forM res $ \(MyData{..} :. MyData2{..}) -> do
    ....
    

Page 32 of many | Previous | Next