Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

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

  1. isSingleton :: Rect Double -> Bool

    chart-svg Chart.Data

    is any dimension singular?

  2. padSingletons :: Rect Double -> Rect Double

    chart-svg Chart.Data

    Pad a Rect to remove singleton dimensions. Attempting to scale a singleton dimension of a Rect is a common bug. Due to the use of scaling, and thus zero dividing, this is a common exception to guard against.

    >>> project (Rect 0 0 0 1) one (Point 0 0)
    Point NaN (-0.5)
    
    >>> project (padSingletons (Rect 0 0 0 1)) one (Point 0 0)
    Point 0.0 (-0.5)
    

  3. forestCursorAddChildNodeSingleToNodeAtEndAndSelect :: (a -> b) -> a -> ForestCursor a b -> ForestCursor a b

    cursor Cursor.Forest

    No documentation available.

  4. forestCursorAddChildNodeSingleToNodeAtPosAndSelect :: (a -> b) -> Int -> a -> ForestCursor a b -> ForestCursor a b

    cursor Cursor.Forest

    No documentation available.

  5. forestCursorAddChildNodeSingleToNodeAtStartAndSelect :: (a -> b) -> a -> ForestCursor a b -> ForestCursor a b

    cursor Cursor.Forest

    No documentation available.

  6. forestCursorAddChildNodeSingleToNodeAtEndAndSelect :: a -> ForestCursor a -> ForestCursor a

    cursor Cursor.Simple.Forest

    No documentation available.

  7. forestCursorAddChildNodeSingleToNodeAtPosAndSelect :: Int -> a -> ForestCursor a -> ForestCursor a

    cursor Cursor.Simple.Forest

    No documentation available.

  8. forestCursorAddChildNodeSingleToNodeAtStartAndSelect :: a -> ForestCursor a -> ForestCursor a

    cursor Cursor.Simple.Forest

    No documentation available.

  9. unSingletonEnum :: SingletonEnum a -> a

    scale Codec.Scale.SingletonEnum

    No documentation available.

  10. genSingletons :: OptionsMonad q => [Name] -> q [Dec]

    singletons-th Data.Singletons.TH

    Generate singled definitions for each of the provided type-level declaration Names. For example, the singletons-th package itself uses

    $(genSingletons [''Bool, ''Maybe, ''Either, ''[]])
    
    to generate singletons for Prelude types.

Page 62 of many | Previous | Next