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.
setmapped :: Ord j => IndexPreservingSetter (Set i) (Set j) i jlens 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]
setAfterBind :: HasAfterBind a => (Socket -> IO ()) -> a -> aconduit-extra Data.Conduit.Network No documentation available.
setHost :: ByteString -> ClientSettings -> ClientSettingsconduit-extra Data.Conduit.Network No documentation available.
setNeedLocalAddr :: Bool -> ServerSettings -> ServerSettingsconduit-extra Data.Conduit.Network No documentation available.
setPort :: HasPort a => Int -> a -> aconduit-extra Data.Conduit.Network No documentation available.
setAfterBind :: HasAfterBind a => (Socket -> IO ()) -> a -> aconduit-extra Data.Conduit.Network.Unix No documentation available.
setPath :: HasPath a => FilePath -> a -> aconduit-extra Data.Conduit.Network.Unix No documentation available.
setFormat :: FormatOptions -> EncodeOptions -> EncodeOptionsyaml Data.Yaml Set the encoding formatting for the encoded YAML. By default, this is defaultFormatOptions.
setStringStyle :: (Text -> (Tag, Style)) -> EncodeOptions -> EncodeOptionsyaml 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:
- Any string containing a newline character uses the Literal style
- Otherwise, any special string (see isSpecialString) uses SingleQuoted
- Otherwise, use Plain
setWidth :: Maybe Int -> FormatOptions -> FormatOptionsyaml Data.Yaml Set the maximum number of columns in the YAML output, or Nothing for infinite. By default, the limit is 80 characters.