View source code
Display the source code in core/time.d from which this
page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a
Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.
Requires a signed-in GitHub account. This works well for small changes.
If you'd like to make larger changes you may want to consider using
local clone.
Function core.time.Duration.total
Returns the total number of the given units in this Duration
.
So, unlike split
, it does not strip out the larger units.
long total(string units)() const nothrow @nogc @property
if (units == "weeks" || units == "days" || units == "hours" || units == "minutes" || units == "seconds" || units == "msecs" || units == "usecs" || units == "hnsecs" || units == "nsecs");
Example
writeln(dur!"weeks"(12) .total!"weeks"); // 12
writeln(dur!"weeks"(12) .total!"days"); // 84
writeln(dur!"days"(13) .total!"weeks"); // 1
writeln(dur!"days"(13) .total!"days"); // 13
writeln(dur!"hours"(49) .total!"days"); // 2
writeln(dur!"hours"(49) .total!"hours"); // 49
writeln(dur!"nsecs"(2007) .total!"hnsecs"); // 20
writeln(dur!"nsecs"(2007) .total!"nsecs"); // 2000
Authors
Jonathan M Davis and Kato Shoichi
License
Copyright © 1999-2022 by the D Language Foundation | Page generated by ddox.