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.

  1. reverseLocLine :: forall (v :: Type -> Type) n . (Metric v, OrderedField n) => Located (Trail' Line v n) -> Located (Trail' Line v n)

    diagrams-lib Diagrams

    Reverse a concretely located line. See reverseLocTrail.

  2. reverseLocLoop :: forall (v :: Type -> Type) n . (Metric v, OrderedField n) => Located (Trail' Loop v n) -> Located (Trail' Loop v n)

    diagrams-lib Diagrams

    Reverse a concretely located loop. See reverseLocTrail. Note that this is guaranteed to preserve the location.

  3. reverseLocTrail :: forall (v :: Type -> Type) n . (Metric v, OrderedField n) => Located (Trail v n) -> Located (Trail v n)

    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
    
    

  4. reverseLoop :: forall (v :: Type -> Type) n . (Metric v, OrderedField n) => Trail' Loop v n -> Trail' Loop v n

    diagrams-lib Diagrams

    Reverse a loop. See reverseTrail.

  5. reversePath :: forall (v :: Type -> Type) n . (Metric v, OrderedField n) => Path v n -> Path v n

    diagrams-lib Diagrams

    Reverse all the component trails of a path.

  6. reverseTrail :: forall (v :: Type -> Type) n . (Metric v, OrderedField n) => Trail v n -> Trail v n

    diagrams-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
    
    

  7. reverseDomain :: Sectionable p => p -> p

    diagrams-lib Diagrams.Parametric

    Flip the parameterization on the domain.

  8. reversePath :: forall (v :: Type -> Type) n . (Metric v, OrderedField n) => Path v n -> Path v n

    diagrams-lib Diagrams.Path

    Reverse all the component trails of a path.

  9. reversed :: Reversing a => Iso' a a

    diagrams-lib Diagrams.Prelude

    An Iso between a list, ByteString, Text fragment, etc. and its reversal.

    >>> "live" ^. reversed
    "evil"
    
    >>> "live" & reversed %~ ('d':)
    "lived"
    

  10. reverseSegment :: forall n (v :: Type -> Type) . (Num n, Additive v) => Segment Closed v n -> Segment Closed v n

    diagrams-lib Diagrams.Segment

    Reverse the direction of a segment.

Page 25 of many | Previous | Next