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.

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

    fmlist Data.FMList

    No documentation available.

  2. toList :: Foldable t => t a -> [a]

    fmlist Data.FMList

    List of elements of a structure, from left to right. If the entire list is intended to be reduced via a fold, just fold the structure directly bypassing the list.

    Examples

    Basic usage:
    >>> toList Nothing
    []
    
    >>> toList (Just 42)
    [42]
    
    >>> toList (Left "foo")
    []
    
    >>> toList (Node (Leaf 5) 17 (Node Empty 12 (Leaf 8)))
    [5,17,12,8]
    
    For lists, toList is the identity:
    >>> toList [1, 2, 3]
    [1,2,3]
    

  3. module Data.FocusList

    No documentation available.

  4. data FocusList a

    focuslist Data.FocusList

    A list with a given element having the Focus. FocusList has some invariants that must be protected. You should not use the FocusList constructor or the focusListFocus or focusList accessors. Implemented under the hood as a Seq.

  5. FocusList :: Focus -> !Seq a -> FocusList a

    focuslist Data.FocusList

    No documentation available.

  6. focusList :: FocusList a -> !Seq a

    focuslist Data.FocusList

    No documentation available.

  7. focusListFocus :: FocusList a -> !Focus

    focuslist Data.FocusList

    No documentation available.

  8. fromListFL :: Focus -> [a] -> Maybe (FocusList a)

    focuslist Data.FocusList

    Safely create a FocusList from a list.

    >>> fromListFL (Focus 1) ["cat","dog","goat"]
    Just (FocusList (Focus 1) ["cat","dog","goat"])
    
    >>> fromListFL NoFocus []
    Just (FocusList NoFocus [])
    
    If the Focus is out of range for the list, then Nothing will be returned.
    >>> fromListFL (Focus (-1)) ["cat","dog","goat"]
    Nothing
    
    >>> fromListFL (Focus 3) ["cat","dog","goat"]
    Nothing
    
    >>> fromListFL NoFocus ["cat","dog","goat"]
    Nothing
    
    complexity: O(n) where n is the length of the input list.

  9. lensFocusList :: forall a1 a2 f . Functor f => (Seq a1 -> f (Seq a2)) -> FocusList a1 -> f (FocusList a2)

    focuslist Data.FocusList

    No documentation available.

  10. lensFocusListFocus :: forall a f . Functor f => (Focus -> f Focus) -> FocusList a -> f (FocusList a)

    focuslist Data.FocusList

    No documentation available.

Page 195 of many | Previous | Next