Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. widthStep :: Double -> PropertySpec

    hvega Graphics.Vega.VegaLite

    Set the width of the discrete x-field (e.g. individual bars in a bar chart). The total width is then calculated based on the number of discrete fields (e.g. bars).

    toVegaLite
    [ widthStep 17
    , data []
    , enc []
    , mark Bar []
    ]
    
    This replaces the use of SRangeStep from ScaleProperty.

  2. fanoutSteps :: forall (m :: Type -> Type) a r . (Monad m, Monoid r) => [ProcessT m a r] -> ProcessT m a r

    machines Data.Machine.Fanout

    Share inputs with each of a list of processes in lockstep. If none of the processes yields a value, the composite process will itself yield mempty. The idea is to provide a handle on steps only executed for their side effects. For instance, if you want to run a collection of ProcessTs that await but don't yield some number of times, you can use 'fanOutSteps . map (fmap (const ()))' followed by a taking process.

  3. enumFromStepN :: Num a => a -> a -> Int -> Maybe (NonEmptyVector a)

    nonempty-vector Data.Vector.NonEmpty

    O(n) Yield a non-empty vector of the given length containing the values x, x+y, x+y+y etc. This operations is usually more efficient than enumFromThenTo. If an enumeration does not use meaningful indices, Nothing is returned, otherwise, Just containing a non-empty vector.

  4. enumFromStepN1 :: Num a => a -> a -> Int -> NonEmptyVector a

    nonempty-vector Data.Vector.NonEmpty

    O(n) Yield a non-empty vector of length max n 1 containing the values x, x+y, x+y+y etc. This operations is usually more efficient than enumFromThenTo.

  5. DimStep :: Measure -> Step

    HaTeX Text.LaTeX.Packages.TikZ.Syntax

    No documentation available.

  6. GridStep :: Step -> GridOption

    HaTeX Text.LaTeX.Packages.TikZ.Syntax

    No documentation available.

  7. PointStep :: TPoint -> Step

    HaTeX Text.LaTeX.Packages.TikZ.Syntax

    No documentation available.

  8. XYStep :: Double -> Step

    HaTeX Text.LaTeX.Packages.TikZ.Syntax

    No documentation available.

  9. getErrorStepSizeLog :: Approx -> Maybe Int

    aern2-mp AERN2.MP.Float.Type

    Returns s such that 2^s is the distance to the nearest other number with the same precision. Returns Nothing for Bottom.

  10. endStepHook :: BringUpToDateHooks (m :: Type -> Type) -> Int -> Text -> m ()

    beam-migrate Database.Beam.Migrate.Simple

    Called at the end of each step with the step index and description

Page 57 of many | Previous | Next