diff options
author | Adam Chlipala <adam@chlipala.net> | 2012-02-04 11:01:06 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2012-02-04 11:01:06 -0500 |
commit | 09c2534e57944a9b5d6cc8971d0733d25749ade5 (patch) | |
tree | e85b1d872c1f40a0b7ba471cf80d0787e65c7eb7 /lib/ur | |
parent | 36603eae600143253959ad94cdc5bb75a766b91c (diff) |
Basis.toMilliseconds and diffInMilliseconds, based on a patch from Gergely Buday
Diffstat (limited to 'lib/ur')
-rw-r--r-- | lib/ur/basis.urs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ur/basis.urs b/lib/ur/basis.urs index 3afb4985..67e6abc6 100644 --- a/lib/ur/basis.urs +++ b/lib/ur/basis.urs @@ -161,6 +161,8 @@ val addSeconds : time -> int -> time val toSeconds : time -> int val diffInSeconds : time -> time -> int (* Earlier time first *) +val toMilliseconds : time -> int +val diffInMilliseconds : time -> time -> int val timef : string -> time -> string (* Uses strftime() format string *) val readUtc : string -> option time |