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.
scrolledWindowVAdjustment :: ScrolledWindowClass self => Attr self Adjustmentgtk3 Graphics.UI.Gtk.Scrolling.ScrolledWindow The Adjustment for the vertical position.
colorSelectionIsAdjusting :: ColorSelectionClass self => self -> IO Boolgtk3 Graphics.UI.Gtk.Selectors.ColorSelection Gets the current state of the widget. Returns True if the user is currently dragging a color around, and False if the selection has stopped.
hsvIsAdjusting :: HSVClass self => self -> IO Boolgtk3 Graphics.UI.Gtk.Selectors.HSV An HSV color selector can be said to be adjusting if multiple rapid changes are being made to its value, for example, when the user is adjusting the value with the mouse. This function queries whether the HSV color selector is being adjusted or not.
adjust :: (Hashable k, Ord k) => (a -> a) -> k -> Map k a -> Map k ahashmap Data.HashMap Adjust a value at a specific key. When the key is not a member of the map, the original map is returned.
adjustWithKey :: (Hashable k, Ord k) => (k -> a -> a) -> k -> Map k a -> Map k ahashmap Data.HashMap Adjust a value at a specific key. When the key is not a member of the map, the original map is returned.
adjustMonth :: YearLeap -> Month -> Monthhebrew-time Data.Time.Calendar.Hebrew.Internal No documentation available.
-
heist Heist.Compiled.LowLevel Modifies a promise.
-
hledger-web Hledger.Web.Import Same as belongsTo, but uses getJust and therefore is similarly unsafe.
-
hledger-web Hledger.Web.Import Same as get, but for a non-null (not Maybe) foreign key. Unsafe unless your database is enforcing that the foreign key is valid.
Example usage
With schema-1 and dataset-1,getJustSpj :: MonadIO m => ReaderT SqlBackend m User getJustSpj = getJust spjId
spj <- getJust spjId
The above query when applied on dataset-1, will get this record:+----+------+-----+ | id | name | age | +----+------+-----+ | 1 | SPJ | 40 | +----+------+-----+
getJustUnknown :: MonadIO m => ReaderT SqlBackend m User getJustUnknown = getJust unknownId
mrx <- getJustUnknown This just throws an error. -
hledger-web Hledger.Web.Import Same as getJust, but returns an Entity instead of just the record.
Example usage
With schema-1 and dataset-1,getJustEntitySpj :: MonadIO m => ReaderT SqlBackend m (Entity User) getJustEntitySpj = getJustEntity spjId
spjEnt <- getJustEntitySpj
The above query when applied on dataset-1, will get this entity:+----+------+-----+ | id | name | age | +----+------+-----+ | 1 | SPJ | 40 | +----+------+-----+