strptime-0.1.1: Efficient parsing of LocalTime using a binding to C's strptime

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

Data.Time.Parse

Description

strptime wrapper

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 C's 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.