CurryInfo: time-3.0.0 / Data.Time.toDayString

definition:
toDayString :: CalendarTime -> String
toDayString (CalendarTime y mo d _ _ _ _) =
    longMonths!!(mo-1) ++ " " ++ show d ++ ", " ++ show y
  where longMonths = ["January","February","March","April","May","June","July",
                      "August","September","October","November","December"]
demand:
argument 1
deterministic:
deterministic operation
documentation:
--- Transforms a calendar time into a string containing the day, e.g.,
--- "September 23, 2006".
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{({CalendarTime}) |-> _}
name:
toDayString
precedence:
no precedence defined
result-values:
_
signature:
CalendarTime -> String
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term