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.
-
mpi-hs-binary Control.Distributed.MPI.Binary Rank placeholder to specify that a message can be received from any source (MPI_ANY_SOURCE). When calling probe or recv (or iprobe or irecv) with anySource as source, the actual source can be determined from the returned message status via getSource.
-
mpi-hs-binary Control.Distributed.MPI.Binary Tag placeholder to specify that a message can have any tag (MPI_ANY_TAG). When calling probe or recv (or iprobe or irecv) with anyTag as tag, the actual tag can be determined from the returned message status via getTag.
-
mpi-hs-cereal Control.Distributed.MPI.Serialize Rank placeholder to specify that a message can be received from any source (MPI_ANY_SOURCE). When calling probe or recv (or iprobe or irecv) with anySource as source, the actual source can be determined from the returned message status via getSource.
-
mpi-hs-cereal Control.Distributed.MPI.Serialize Tag placeholder to specify that a message can have any tag (MPI_ANY_TAG). When calling probe or recv (or iprobe or irecv) with anyTag as tag, the actual tag can be determined from the returned message status via getTag.
-
network-ip Network.IP.Addr IPv4 address 0.0.0.0.
-
network-ip Network.IP.Addr IPv6 address ::.
anySingle :: MonadParsec e s m => m (Token s)network-uri-template Network.URI.Template.Internal.Parse Parse and return a single token. It's a good idea to attach a label to this parser.
anySingle = satisfy (const True)
See also: satisfy, anySingleBut.anySingleBut :: MonadParsec e s m => Token s -> m (Token s)network-uri-template Network.URI.Template.Internal.Parse Match any token but the given one. It's a good idea to attach a label to this parser.
anySingleBut t = satisfy (/= t)
See also: single, anySingle, satisfy.-
parser-regex Regex.Base Parse any c.
-
parser-regex Regex.Internal.Regex Parse any c.