Time.time

Stephen Weeks MLton@sourcelight.com
Wed, 11 Jul 2001 19:17:57 -0700


Anybody have any objections to changing Time.time to use LargeInt instead of
Int?  That is, changing from

      datatype time = T of {sec: Int.int, usec: Int.int}

to

      datatype time = T of {sec: LargeInt.int, usec: LargeInt.int}

Then we don't have to worry about Overflow.