Hoogle Search
Within LTS Haskell 24.3 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
text Data.Text.Internal.Fusion.Types No documentation available.
pattern (
:< ) :: Char -> Text -> Texttext Data.Text.Lazy Bidirectional pattern synonym for cons (O(n)) and uncons (O(1)), to be used together with Empty.
pattern (
:> ) :: Text -> Char -> Texttext Data.Text.Lazy Bidirectional pattern synonym for snoc (O(n)) and unsnoc (O(1)) to be used together with Empty.
-
containers Data.Sequence leftmost element and the rest of the sequence
pattern (
:<| ) :: a -> Seq a -> Seq acontainers Data.Sequence A bidirectional pattern synonym viewing the front of a non-empty sequence.
-
containers Data.Sequence the sequence minus the rightmost element, and the rightmost element
pattern (
:|> ) :: Seq a -> a -> Seq acontainers Data.Sequence A bidirectional pattern synonym viewing the rear of a non-empty sequence.
-
containers Data.Sequence.Internal leftmost element and the rest of the sequence
pattern (
:<| ) :: a -> Seq a -> Seq acontainers Data.Sequence.Internal A bidirectional pattern synonym viewing the front of a non-empty sequence.
-
containers Data.Sequence.Internal the sequence minus the rightmost element, and the rightmost element