Mercurial > urweb
view demo/list.ur @ 1448:37599e85bba8
Fix getting UTC time from formatted strings ( in uw_Basis_readUtc ).
Corrects 2 things:
- timezones with offsets not an integer number of hours
- double correcting for daylight savings time
author | Karn Kallio <kkallio@eka> |
---|---|
date | Wed, 13 Apr 2011 00:04:41 -0430 |
parents | 669ac5e9a69e |
children |
line wrap: on
line source
datatype list t = Nil | Cons of t * list t fun length [t] (ls : list t) = let fun length' (ls : list t) (acc : int) = case ls of Nil => acc | Cons (_, ls') => length' ls' (acc + 1) in length' ls 0 end fun rev [t] (ls : list t) = let fun rev' (ls : list t) (acc : list t) = case ls of Nil => acc | Cons (x, ls') => rev' ls' (Cons (x, acc)) in rev' ls Nil end