Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
/: ) :: MediaType -> (ByteString, ByteString) -> MediaTypehttp-media Network.HTTP.Media.MediaType Adds a parameter to a MediaType. Can produce an error if either string is invalid.
(
.: ) :: FromJSON a => Object -> Key -> Parser ayesod-core Yesod.Core.Json Retrieve the value associated with the given key of an Object. The result is empty if the key is not present or the value cannot be converted to the desired type. This accessor is appropriate if the key and value must be present in an object for it to be valid. If the key and value are optional, use .:? instead.
(
>:> ) :: Addr a => AddrRange a -> AddrRange a -> Booliproute Data.IP The >:> operator takes two AddrRange. It returns True if the first AddrRange contains the second AddrRange. Otherwise, it returns False.
>>> makeAddrRange ("127.0.2.1" :: IPv4) 8 >:> makeAddrRange "127.0.2.1" 24 True >>> makeAddrRange ("127.0.2.1" :: IPv4) 24 >:> makeAddrRange "127.0.2.1" 8 False >>> makeAddrRange ("2001:DB8::1" :: IPv6) 16 >:> makeAddrRange "2001:DB8::1" 32 True >>> makeAddrRange ("2001:DB8::1" :: IPv6) 32 >:> makeAddrRange "2001:DB8::1" 16 False(
.: ) :: FromField a => NamedRecord -> ByteString -> Parser acassava Data.Csv Alias for lookup.
(
%: ) :: forall (m :: Type -> Type) r a . Monad m => T r a -> (a -> a) -> StateT r m ()data-accessor Data.Accessor Infix variant of modify.
(
=: ) :: forall (m :: Type -> Type) r a . Monad m => Accessor r a -> a -> StateT r m ()data-accessor Data.Accessor Deprecated: use (Data.Accessor.Monad.Trans.State.%=) from data-accessor-transformers package
(
^: ) :: T r a -> (a -> a) -> r -> rdata-accessor Data.Accessor modify as infix operator. This lets us write field^:subfield^:(2*) $ record, record$%field^:subfield^:(2*) or record$%field^:subfield^:(const 1).
(
^: ) :: T r a -> (a -> a) -> r -> rdata-accessor Data.Accessor.Basic modify as infix operator. This lets us write field^:subfield^:(2*) $ record, record$%field^:subfield^:(2*) or record$%field^:subfield^:(const 1).
(
%: ) :: forall (m :: Type -> Type) r a . Monad m => T r a -> (a -> a) -> StateT r m ()data-accessor Data.Accessor.MonadState Infix variant of modify.
-
non-empty Data.NonEmpty No documentation available.