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.
_discriminatorMapping :: Discriminator -> InsOrdHashMap Text Textopenapi3 Data.OpenApi.Internal An object to hold mappings between payload values and schema names or references.
_schemaPattern :: Schema -> Maybe Patternopenapi3 Data.OpenApi.Internal No documentation available.
_schemaProperties :: Schema -> InsOrdHashMap Text (Referenced Schema)openapi3 Data.OpenApi.Internal No documentation available.
genericMappend :: (Generic a, GMonoid (Rep a)) => a -> a -> aopenapi3 Data.OpenApi.Internal.Utils No documentation available.
gmappend :: GMonoid f => f p -> f p -> f popenapi3 Data.OpenApi.Internal.Utils No documentation available.
swaggerMappend :: SwaggerMonoid m => m -> m -> mopenapi3 Data.OpenApi.Internal.Utils No documentation available.
-
openapi3 Data.OpenApi.Lens No documentation available.
-
pipes-bytestring Pipes.ByteString Map a function over the byte stream and concatenate the results
-
protolude Protolude A map of integers to values a.
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]