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.

  1. fromListElementWitness :: forall (t :: k) . ListElementWitness w => ListElementType (WitnessTypeList w) t -> w t

    witness Data.Type.Witness.General.ListElement

    No documentation available.

  2. fromLists :: (Ord i, Num i, Enum i, HasZero b) => Size i -> [[b]] -> Matrix i b

    Agda Agda.Termination.SparseMatrix

    fromLists sz rs constructs a matrix from a list of lists of values (a list of rows). O(size) where size = rows × cols. Precondition: length rs == rows sz and all ((cols sz ==) . length) rs.

  3. fromListPrecondition :: (Eq k, Eq v, Eq (Tag v), HasTag v) => [(k, v)] -> Bool

    Agda Agda.Utils.BiMap

    No documentation available.

  4. fromListN :: IsList l => Int -> [Item l] -> l

    Agda Agda.Utils.List1

    The fromListN function takes the input list's length and potentially uses it to construct the structure l more efficiently compared to fromList. If the given number does not equal to the input list's length the behaviour of fromListN is not specified.

    fromListN (length xs) xs == fromList xs
    

  5. fromListSafe :: List1 a -> [a] -> List1 a

    Agda Agda.Utils.List1

    Safe version of fromList.

  6. fromList1 :: List1 a -> List2 a

    Agda Agda.Utils.List2

    Unsafe! O(1).

  7. fromList1Either :: List1 a -> Either a (List2 a)

    Agda Agda.Utils.List2

    Any List1 is either a singleton or a List2. O(1).

  8. fromList1Maybe :: List1 a -> Maybe (List2 a)

    Agda Agda.Utils.List2

    Safe. O(1).

  9. fromListMaybe :: [a] -> Maybe (List2 a)

    Agda Agda.Utils.List2

    Safe. O(1).

  10. fromListExternal :: (C a, Storable a) => Int -> [KeyCount w a] -> IO (T w a)

    battleship-combinatorics Combinatorics.Battleship.Count.CountMap

    Create a CountMap from a large list of elements. Neither the argument nor the result needs to fit in memory. You only have to provide enough space on disk. The result is lazily read from a temporary file. That is, this file should neither be modified nor deleted while processing the result. Even more, fromListExternal must not be called again while processing the result. You may better choose writeSorted.

Page 57 of many | Previous | Next