Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

  1. _discriminatorMapping :: Discriminator -> InsOrdHashMap Text Text

    openapi3 Data.OpenApi.Internal

    An object to hold mappings between payload values and schema names or references.

  2. _schemaPattern :: Schema -> Maybe Pattern

    openapi3 Data.OpenApi.Internal

    No documentation available.

  3. _schemaProperties :: Schema -> InsOrdHashMap Text (Referenced Schema)

    openapi3 Data.OpenApi.Internal

    No documentation available.

  4. genericMappend :: (Generic a, GMonoid (Rep a)) => a -> a -> a

    openapi3 Data.OpenApi.Internal.Utils

    No documentation available.

  5. gmappend :: GMonoid f => f p -> f p -> f p

    openapi3 Data.OpenApi.Internal.Utils

    No documentation available.

  6. swaggerMappend :: SwaggerMonoid m => m -> m -> m

    openapi3 Data.OpenApi.Internal.Utils

    No documentation available.

  7. class HasMapping s a | s -> a

    openapi3 Data.OpenApi.Lens

    No documentation available.

  8. concatMap :: forall (m :: Type -> Type) r . Monad m => (Word8 -> ByteString) -> Pipe ByteString ByteString m r

    pipes-bytestring Pipes.ByteString

    Map a function over the byte stream and concatenate the results

  9. data IntMap a

    protolude Protolude

    A map of integers to values a.

  10. concatMap :: Foldable t => (a -> [b]) -> t a -> [b]

    protolude Protolude

    Map a function over all the elements of a container and concatenate the resulting lists.

    Examples

    Basic usage:
    >>> concatMap (take 3) [[1..], [10..], [100..], [1000..]]
    [1,2,3,10,11,12,100,101,102,1000,1001,1002]
    
    >>> concatMap (take 3) (Just [1..])
    [1,2,3]
    

Page 570 of many | Previous | Next