Hoogle Search
Within Stackage Nightly 2025-09-30 (ghc-9.12.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
timeOffsetFormat :: FormatExtension -> Format TimeZonetime Data.Time.Format.ISO8601 ±hh:mm (extended), ±hhmm (basic) [ISO 8601:2004(E) sec. 4.2.5.1]
-
time Data.Time.Format.Internal The class of types which can be parsed given a UNIX-style time format string.
durationParseTimeSpecifier :: TimeLocale -> Maybe ParseNumericPadding -> Char -> ReadP Stringtime Data.Time.Format.Internal No documentation available.
-
time Data.Time.Format.Internal Get the string corresponding to the given format specifier.
timeParseTimeSpecifier :: TimeLocale -> Maybe ParseNumericPadding -> Char -> ReadP Stringtime Data.Time.Format.Internal No documentation available.
timeZoneOffsetString :: TimeZone -> Stringtime Data.Time.LocalTime Text representing the offset of this timezone, such as "-0800" or "+0400" (like %z in formatTime).
timeZoneOffsetString' :: Maybe Char -> TimeZone -> Stringtime Data.Time.LocalTime Text representing the offset of this timezone, such as "-0800" or "+0400" (like %z in formatTime), with arbitrary padding.
basicSet :: MVector v a => v s a -> a -> ST s ()vector Data.Vector.Generic.Mutable Set all elements of the vector to the given value. This method should not be called directly, use set instead.
basicSet :: MVector v a => v s a -> a -> ST s ()vector Data.Vector.Generic.Mutable.Base Set all elements of the vector to the given value. This method should not be called directly, use set instead.
keysSet :: HashMap k a -> HashSet kunordered-containers Data.HashMap.Lazy Produce a HashSet of all the keys in the given HashMap.
>>> HashSet.keysSet (HashMap.fromList [(1, "a"), (2, "b")] fromList [1,2]