Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. typesInList :: [TypeRep] -> [TypeRep]

    express Data.Express.Utils.Typeable

    Returns types and subtypes from the given list of TypeReps.

    > typesInList [typeOf (undefined :: () -> Int), typeOf (undefined :: String -> String -> Bool)]
    [(),Bool,Char,Int,[Char],() -> Int,[Char] -> Bool,[Char] -> [Char] -> Bool]
    
    > typesInList [typeOf (undefined :: (Char,Int))]
    [Char,Int,(Char,Int)]
    

  2. toListCS :: CharSet -> [Char]

    hxt-charproperties Data.Set.CharSet

    No documentation available.

  3. toKeyedList :: FoldableWithKey t => t a -> [(Key t, a)]

    keys Data.Key

    No documentation available.

  4. fromList :: Context a => (Int, Int) -> [a] -> Matrix a

    matrices Data.Matrix

    No documentation available.

  5. fromLists :: Context a => [[a]] -> Matrix a

    matrices Data.Matrix

    O(m*n) Create matrix from list of lists, it doesn't check if the list of list is a valid matrix

  6. toList :: Context a => Matrix a -> [a]

    matrices Data.Matrix

    O(m*n) Create a list by concatenating rows

  7. toLists :: Context a => Matrix a -> [[a]]

    matrices Data.Matrix

    O(m*n) List of lists

  8. fromList :: forall m (v :: Type -> Type) a . Matrix m v a => (Int, Int) -> [a] -> m v a

    matrices Data.Matrix.Class

    No documentation available.

  9. fromLists :: forall m (v :: Type -> Type) a . Matrix m v a => [[a]] -> m v a

    matrices Data.Matrix.Class

    O(m*n) Create matrix from list of lists, it doesn't check if the list of list is a valid matrix

  10. toList :: forall m (v :: Type -> Type) a . Matrix m v a => m v a -> [a]

    matrices Data.Matrix.Class

    O(m*n) Create a list by concatenating rows

Page 126 of many | Previous | Next