-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Efficient parsing of CalendarTime using a binding to C's strptime -- -- This library provides a binding to strptime, that allows to parse -- dates and times from strings and strict/lazy bytestrings. The library -- creates LocalTime values. @package strptime @version 0.1 -- | strptime wrapper module Data.Time.Parse -- | The class of values from which time may be parsed class Strptime a strptime :: (Strptime a) => a -> a -> Maybe (LocalTime, a) instance Strptime_ ByteString instance Strptime_ ByteString instance Strptime_ [Char] instance Strptime ByteString instance Strptime ByteString instance Strptime [Char]