strptime-1.0.10: Efficient parsing of LocalTime using a binding to C's strptime, with some extra features (i.e. fractional seconds)

Portabilityportable (H98 + FFI)
Stabilityexperimental
Maintainerekirpichov@gmail.com
Safe HaskellNone

Data.Time.Parse

Description

A binding to strptime with extra features - see below.

Synopsis

Documentation

class Strptime a whereSource

The class of values from which time may be parsed

Methods

strptime :: a -> a -> Maybe (LocalTime, a)Source

Given a format string in the format of strptime (see http://linux.die.net/man/3/strptime) and a data string, parse a date+time value from the data string and also return the remainder of the data string. We also support a %OS format specifier for fractional seconds, because we are using the strptime from r-project.org. We also support %^[+-][N]s for multiples of seconds since epoch, for example %^-3s is milliseconds since epoch (N can only be 1 digit)