You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: #26798 will add a totalMicroseconds method to go alongside the already-existing totalSeconds method on the timeDelta class. There's probably some use for totalNanoseconds as well, though note that nanoseconds are smaller than microseconds and microseconds are the smallest unit we store on the timeDelta type today.
Is this issue currently blocking your progress?
no, it just came up as a similarly missing feature
Code Sample
use Time;
var a =new timeDelta(microseconds=10);
writeln(a.totalNanoseconds()); // Should print 10000
The text was updated successfully, but these errors were encountered:
Summary of Feature
Description:
#26798 will add a
totalMicroseconds
method to go alongside the already-existingtotalSeconds
method on thetimeDelta
class. There's probably some use for totalNanoseconds as well, though note that nanoseconds are smaller than microseconds and microseconds are the smallest unit we store on thetimeDelta
type today.Is this issue currently blocking your progress?
no, it just came up as a similarly missing feature
Code Sample
The text was updated successfully, but these errors were encountered: