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.
notebookStyleHasSecondaryForwardStepper :: NotebookClass self => ReadAttr self Boolgtk Graphics.UI.Gtk.Layout.Notebook The notebookStyleHasSecondaryForwardStepper property determines whether a second forward arrow button is displayed on the opposite end of the tab area. Default value: False
- Available since Gtk version 2.4
adjustmentGetStepIncrement :: Adjustment -> IO Doublegtk Graphics.UI.Gtk.Misc.Adjustment Retrieve the step-increment value.
adjustmentSetStepIncrement :: Adjustment -> Double -> IO ()gtk Graphics.UI.Gtk.Misc.Adjustment Set the step-increment value.
adjustmentStepIncrement :: Attr Adjustment Doublegtk Graphics.UI.Gtk.Misc.Adjustment The step increment of the adjustment. Default value: 0
-
gtk Graphics.UI.Gtk.Multiline.TextView Movement in text widget
type family
SimplifyStep p :: Maybe Typererefined Rerefined.Simplify.Core Try to perform a single simplification step on the given predicate. Returns Nothing if we were unable to simplify.
-
sbv Data.SBV.Tools.Induction A step in an inductive proof. If the tag is present (i.e., Just nm), then the step belongs to the subproof that establishes the strengthening named nm.
simplifyStep :: (SimpleExpr -> SimpleExpr) -> SimpleExpr -> SimpleExprsimple-expr Debug.SimpleExpr.Expr Minimalistic simplification step.
Examples of usage
>>> import Prelude (($), id) >>> import NumHask ((+), (*), (**))
>>> simplifyStep id (0 + (0 + (0 + 10))) 0+(0+10)
>>> simplifyStep id (1 * (0 + (10 ** 1))) 0+(10^1)
chainStepM :: Applicative m => (s1 -> m s2) -> (a -> m (Step s2 b)) -> Step s1 a -> m (Step s2 b)streamly-core Streamly.Internal.Data.Fold If Partial then map the state, if Done then call the next step.
mapMStep :: Applicative m => (a -> m b) -> Step s a -> m (Step s b)streamly-core Streamly.Internal.Data.Fold Map a monadic function over the result b in Step s b. Internal