Hoogle Search

Within LTS Haskell 24.53 (ghc-9.10.3)

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

  1. data AsSingleton (a :: [Nat]) (b :: [Nat])

    harpie Harpie.Shape

    Convert a scalar to a dimensioned shape >>> :k! Eval (AsSingleton '[]) ... = '[1] >>> :k! Eval (AsSingleton [2,3,4]) ... = [2, 3, 4]

  2. asSingleton :: [Int] -> [Int]

    harpie Harpie.Shape

    Convert a scalar to a dimensioned shape

    >>> asSingleton []
    [1]
    
    >>> asSingleton [2,3,4]
    [2,3,4]
    

  3. plot_bars_singleton_width :: forall x y f . Functor f => (Double -> f Double) -> PlotBars x y -> f (PlotBars x y)

    Chart Graphics.Rendering.Chart.Plot.Bars

    No documentation available.

  4. isSingleton :: Rect Double -> Bool

    chart-svg Chart.Data

    is any dimension singular?

  5. 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)
    

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

    cursor Cursor.Forest

    No documentation available.

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

    cursor Cursor.Forest

    No documentation available.

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

    cursor Cursor.Forest

    No documentation available.

  9. forestCursorAddChildNodeSingleToNodeAtEndAndSelect :: a -> ForestCursor a -> ForestCursor a

    cursor Cursor.Simple.Forest

    No documentation available.

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

    cursor Cursor.Simple.Forest

    No documentation available.

Page 62 of many | Previous | Next