Hoogle Search
Within LTS Haskell 24.31 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
ghc-typelits-presburger GHC.TypeLits.Presburger.Types No documentation available.
-
ghc-typelits-presburger GHC.TypeLits.Presburger.Types No documentation available.
pattern (
:< ) :: Array a -> Array a -> Array aharpie Harpie.Array Convenience pattern for row extraction and consolidation at the beginning of an Array.
>>> (x:<xs) = array [4] [0..3] >>> x UnsafeArray [] [0] >>> xs UnsafeArray [3] [1,2,3] >>> (x:<xs) UnsafeArray [4] [0,1,2,3]
pattern (
:> ) :: Array a -> Array a -> Array aharpie Harpie.Array Convenience pattern for row extraction and consolidation at the end of an Array.
>>> (xs:>x) = array [4] [0..3] >>> x UnsafeArray [] [3] >>> xs UnsafeArray [3] [0,1,2] >>> (xs:>x) UnsafeArray [4] [0,1,2,3]
-
harpie Harpie.Fixed Convenience pattern for row extraction and consolidation at the beginning of an Array.
>>> (x:<xs) = array @'[4] [0..3] >>> toDynamic x UnsafeArray [] [0] >>> toDynamic xs UnsafeArray [3] [1,2,3] >>> toDynamic (x:<xs) UnsafeArray [4] [0,1,2,3]
-
harpie Harpie.Fixed Convenience pattern for row extraction and consolidation at the end of an Array.
>>> (xs:>x) = array @'[4] [0..3] >>> toDynamic x UnsafeArray [] [3] >>> toDynamic xs UnsafeArray [3] [0,1,2] >>> toDynamic (xs:>x) UnsafeArray [4] [0,1,2,3]
-
json-spec Data.JsonSpec Alias for Required.
-
json-spec Data.JsonSpec Alias for Optional.
(
:| ) :: a -> Sig s es a r -> ISig s (es :: Set Type) a rmoffy Control.Moffy.Internal.Sig.Type No documentation available.
pattern (
:<|| ) :: a -> Seq a -> NESeq anonempty-containers Data.Sequence.NonEmpty O(1). An abstract constructor for an NESeq that consists of a "head" a and a "tail" Seq a. Similar to :| for NonEmpty. Can be used to match on the head and tail of an NESeq, and also used to construct an NESeq by consing an item to the beginnong of a Seq, ensuring that the result is non-empty.