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.
(
<. ) :: Num t => LinearForm t -> LinearForm t -> Constraint texp-pairs Math.ExpPairs Build a constraint, which states that the value of the first linear form is less than the value of the second one.
(
<=. ) :: Num t => LinearForm t -> LinearForm t -> Constraint texp-pairs Math.ExpPairs Build a constraint, which states that the value of the first linear form is less or equal to the value of the second one.
(
>. ) :: Num t => LinearForm t -> LinearForm t -> Constraint texp-pairs Math.ExpPairs Build a constraint, which states that the value of the first linear form is greater than the value of the second one.
(
>=. ) :: Num t => LinearForm t -> LinearForm t -> Constraint texp-pairs Math.ExpPairs Build a constraint, which states that the value of the first linear form is greater or equal to the value of the second one.
(
<. ) :: (b -> c) -> (a -> b) -> a -> cflow Flow Right-associative compose operator. Read as "compose backward" or "but first". Use this to create long chains of computation that suggest which direction things move in. You may prefer this operator over (.>) for IO actions since it puts the last function first.
>>> let f = print <. negate <. recip <. succ >>> f 3 -0.25
Or use it anywhere you would use (.). Note that (<.) and (.>) have the same precedence, so they cannot be used together.>>> -- This doesn't work! >>> -- print <. succ .> recip .> negate
\ x -> (g <. f) x == g (f x)
\ x -> (h <. g <. f) x == h (g (f x))
(
$. ) :: Walk c b d -> GTraversal c a b -> GTraversal c a dgreskell Data.Greskell Same as &. with arguments flipped.
(
&. ) :: GTraversal c a b -> Walk c b d -> GTraversal c a dgreskell Data.Greskell Apply the Walk to the GTraversal. In Gremlin, this means calling a chain of methods on the Traversal object.
(
<$.> ) :: Functor f => Walk c b d -> f (GTraversal c a b) -> f (GTraversal c a d)greskell Data.Greskell (
<*.> ) :: Applicative f => f (Walk c b d) -> f (GTraversal c a b) -> f (GTraversal c a d)greskell Data.Greskell (
$. ) :: Walk c b d -> GTraversal c a b -> GTraversal c a dgreskell Data.Greskell.GTraversal Same as &. with arguments flipped.