Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
diagrams-lib Diagrams Reverse a concretely located line. See reverseLocTrail.
-
diagrams-lib Diagrams Reverse a concretely located loop. See reverseLocTrail. Note that this is guaranteed to preserve the location.
-
diagrams-lib Diagrams Reverse a concretely located trail. The endpoint of the original trail becomes the starting point of the reversed trail, so the original and reversed trails comprise exactly the same set of points. reverseLocTrail is an involution, i.e.
reverseLocTrail . reverseLocTrail === id
-
diagrams-lib Diagrams Reverse a loop. See reverseTrail.
reversePath :: forall (v :: Type -> Type) n . (Metric v, OrderedField n) => Path v n -> Path v ndiagrams-lib Diagrams Reverse all the component trails of a path.
reverseTrail :: forall (v :: Type -> Type) n . (Metric v, OrderedField n) => Trail v n -> Trail v ndiagrams-lib Diagrams Reverse a trail. Semantically, if a trail given by a function t from [0,1] to vectors, then the reverse of t is given by t'(s) = t(1-s). reverseTrail is an involution, that is,
reverseTrail . reverseTrail === id
reverseDomain :: Sectionable p => p -> pdiagrams-lib Diagrams.Parametric Flip the parameterization on the domain.
reversePath :: forall (v :: Type -> Type) n . (Metric v, OrderedField n) => Path v n -> Path v ndiagrams-lib Diagrams.Path Reverse all the component trails of a path.
reversed :: Reversing a => Iso' a adiagrams-lib Diagrams.Prelude An Iso between a list, ByteString, Text fragment, etc. and its reversal.
>>> "live" ^. reversed "evil"
>>> "live" & reversed %~ ('d':) "lived"
-
diagrams-lib Diagrams.Segment Reverse the direction of a segment.