Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Documentation
A strict list of complete binary trees accompanied by their node size. The trees appear in >=-node size order. Note: this list is strict in its spine, unlike the Prelude list
Instances
IsList (RAList a) Source # | |
Show a ⇒ Show (RAList a) Source # | |
Eq a ⇒ Eq (RAList a) Source # | |
RandomAccessList (RAList a) Source # | |
Defined in Data.RandomAccessList.SkewBinarySlab cons ∷ Element (RAList a) → RAList a → RAList a Source # uncons ∷ RAList a → Maybe (Element (RAList a), RAList a) Source # length ∷ RAList a → Word64 Source # consSlab ∷ NonEmptyVector (Element (RAList a)) → RAList a → RAList a Source # indexZero ∷ RAList a → Word64 → Maybe (Element (RAList a)) Source # indexOne ∷ RAList a → Word64 → Maybe (Element (RAList a)) Source # unsafeIndexZero ∷ RAList a → Word64 → Element (RAList a) Source # unsafeIndexOne ∷ RAList a → Word64 → Element (RAList a) Source # | |
type Item (RAList a) Source # | |
type Element (RAList a) Source # | |
Defined in Data.RandomAccessList.SkewBinarySlab |
unsafeIndexZero ∷ RAList a → Word64 → a Source #