Hoogle Search
Within LTS Haskell 24.28 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
eliminators Data.Eliminator No documentation available.
fromFixedList :: List n a -> T n afixed-length Data.FixedLength No documentation available.
toFixedList :: T n a -> List n afixed-length Data.FixedLength No documentation available.
toList :: Natural n => T n a -> [a]fixed-length Data.FixedLength No documentation available.
type family
HomList (n :: PeanoNum) (a :: α) :: [α]fixed-vector-hetero Data.Vector.HFixed.Class Homogeneous type list with length n and element of type a. It uses type level natural defined in fixed-vector.
-
fixed-vector-hetero Data.Vector.HFixed.Cont List like heterogeneous vector.
data
VecListF (xs :: [α]) (f :: α -> Type)fixed-vector-hetero Data.Vector.HFixed.Cont List-like vector
type family
HomList (n :: PeanoNum) (a :: α) :: [α]fixed-vector-hetero Data.Vector.HFixed.TypeFuns Homogeneous type list with length n and element of type a. It uses type level natural defined in fixed-vector.
-
FoldMap lists: lists represented by their foldMap function. Examples:
-- A right-infinite list c = 1 `cons` c
-- A left-infinite list d = d `snoc` 2
-- A middle-infinite list ?? e = c `append` d
*> head e 1 *> last e 2
-
fmlist Data.FMList