2010-05-05から1日間の記事一覧

Data.DateTime を使ってみる

Data.DateTime : Utilities to make Data.Time.* easier to use. CalendarTimeは計算は分り易いけれどSQL文字列への変換がやりにくい。 Data.DateTime というのがあったので使ってみる。 -- インストール ~$ cabal update ~$ cabal install datetime fromClo…

Haskell で日付計算 (CalendarTime)

old-time-1.0.0.4: Time library > :m + System.Time > t <- getClockTime > t Wed May 5 11:55:18 東京 (標準時) 2010 > :t t t :: ClockTime > :i ClockTime data ClockTime = TOD Integer Integer -- Defined in System.Time instance Eq ClockTime -- De…