Hoogle Search

Within LTS Haskell 24.18 (ghc-9.10.3)

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

  1. setmapped :: Ord j => IndexPreservingSetter (Set i) (Set j) i j

    lens Data.Set.Lens

    This Setter can be used to change the type of a Set by mapping the elements to new values. Sadly, you can't create a valid Traversal for a Set, but you can manipulate it by reading using folded and reindexing it via setmapped.

    >>> over setmapped (+1) (Set.fromList [1,2,3,4])
    fromList [2,3,4,5]
    

  2. setAfterBind :: HasAfterBind a => (Socket -> IO ()) -> a -> a

    conduit-extra Data.Conduit.Network

    No documentation available.

  3. setHost :: ByteString -> ClientSettings -> ClientSettings

    conduit-extra Data.Conduit.Network

    No documentation available.

  4. setNeedLocalAddr :: Bool -> ServerSettings -> ServerSettings

    conduit-extra Data.Conduit.Network

    No documentation available.

  5. setPort :: HasPort a => Int -> a -> a

    conduit-extra Data.Conduit.Network

    No documentation available.

  6. setAfterBind :: HasAfterBind a => (Socket -> IO ()) -> a -> a

    conduit-extra Data.Conduit.Network.Unix

    No documentation available.

  7. setPath :: HasPath a => FilePath -> a -> a

    conduit-extra Data.Conduit.Network.Unix

    No documentation available.

  8. setFormat :: FormatOptions -> EncodeOptions -> EncodeOptions

    yaml Data.Yaml

    Set the encoding formatting for the encoded YAML. By default, this is defaultFormatOptions.

  9. setStringStyle :: (Text -> (Tag, Style)) -> EncodeOptions -> EncodeOptions

    yaml Data.Yaml

    Set the string style in the encoded YAML. This is a function that decides for each string the type of YAML string to output. WARNING: You must ensure that special strings (like "yes"/"no"/"null"/"1234") are not encoded with the Plain style, because then they will be decoded as boolean, null or numeric values. You can use isSpecialString to detect them. By default, strings are encoded as follows:

  10. setWidth :: Maybe Int -> FormatOptions -> FormatOptions

    yaml Data.Yaml

    Set the maximum number of columns in the YAML output, or Nothing for infinite. By default, the limit is 80 characters.

Page 23 of many | Previous | Next