Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
ghc GHC.Types.Basic Tags are allocated from here for real constructors or for superclass selectors
firstDataDefnCon :: DataDefnCons a -> Maybe aghc Language.Haskell.Syntax.Decls Retrieve the first data constructor in a DataDefnCons (if one exists).
-
regex-tdfa Text.Regex.TDFA.CorePattern No documentation available.
firstChildWithLocalName :: Text -> Element -> Maybe Elementhaskell-gi Data.GI.GIR.XMLUtils Find the first child element with the given name.
-
data-accessor Data.Accessor.Tuple Access to the first value of a triple.
firstM :: Monad m => (a -> m Bool) -> [a] -> m (Maybe a)monad-loops Control.Monad.Loops return the first value from a list, if any, satisfying the given predicate.
firstDayOfWeekOnAfter :: DayOfWeek -> Day -> Dayrio RIO.Time The first day-of-week on or after some day
firstChild :: Cursor -> Maybe Cursorxml Text.XML.Light.Cursor The first child of the given location.
firstDayOfWeekOnAfter :: DayOfWeek -> Day -> Daytime-compat Data.Time.Calendar.Compat The first day-of-week on or after some day
first1Of :: Getting (First a) s a -> s -> adiagrams-lib Diagrams.Prelude Retrieve the First entry of a Fold1 or Traversal1 or the result from a Getter or Lens.
>>> first1Of traverse1 (1 :| [2..10]) 1
>>> first1Of both1 (1,2) 1
Note: this is different from ^..>>> first1Of traverse1 ([1,2] :| [[3,4],[5,6]]) [1,2]
>>> ([1,2] :| [[3,4],[5,6]]) ^. traverse1 [1,2,3,4,5,6]
first1Of :: Getter s a -> s -> a first1Of :: Fold1 s a -> s -> a first1Of :: Lens' s a -> s -> a first1Of :: Iso' s a -> s -> a first1Of :: Traversal1' s a -> s -> a