Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. fromList :: [a] -> CList a

    data-clist Data.CircularList

    Make a (balanced) CList from a list.

  2. fromList :: [a] -> CList a

    data-clist Data.CircularList.Internal

    Make a (balanced) CList from a list.

  3. fromList :: Int -> Int -> [Double] -> Matrix

    dense-linear-algebra Statistics.Matrix

    Convert from a row-major list.

  4. fromList :: (Graph g, Hashable v, Eq v) => [(v, [(v, e)])] -> g v e

    graphite Data.Graph.Types

    Construct a graph from an adjacency list with vertices in type /v and edge attributes in e

  5. fromList :: HeapItem pol item => [item] -> Heap pol item

    heap Data.Heap

    O(n log n). Build a Heap from the given items. Assuming you have a sorted list, you probably want to use fromDescList or fromAscList, they are faster than this function.

  6. fromList :: forall input (length :: Nat) output . (KnownNat length, ILL input length output) => [output] -> Maybe input

    indexed-list-literals Data.IndexedListLiterals

    > fromList [1,2,3] :: Maybe (Int, Int, Int)
    Just (1,2,3)
    
    > fromList ["word","up"] :: Maybe (String, String, String)
    Nothing
    
    > fromList ['z'] :: Maybe (Only Char)
    Just (Only 'z')
    

  7. fromList :: [Int] -> IntSet

    intern Data.Interned.IntSet

    O(n*min(n,W)). Create a set from a list of integers.

  8. fromList :: [Item (KVITable v)] -> KVITable v

    kvitable Data.KVITable

    Converts a list of ([(Key,Val)], Value) tuples to a KVI table.

  9. fromList :: SymEnv -> [(KVar, a)] -> [(KVar, b)] -> [(KVar, Hyp)] -> HashMap KVar IBindEnv -> [(BindId, EbindSol)] -> SEnv (BindId, Sort) -> Sol a b

    liquid-fixpoint Language.Fixpoint.Types.Solutions

    Create a Solution ---------------------------------------------------------

  10. fromList :: [(Path, a)] -> Trie a

    liquid-fixpoint Language.Fixpoint.Utils.Trie

    No documentation available.

Page 22 of many | Previous | Next