Template core.time.Duration.split
Splits out the Duration into the given units.
						
				template split(units...)
				;
						
					
				split takes the list of time units to split out as template arguments. The time unit strings must be given in decreasing order. How it returns the values for those units depends on the overload used.
        The overload which accepts function arguments takes integral types in
        the order that the time unit strings were given, and those integers are
        passed by ref. split assigns the values for the units to each
        corresponding integer. Any integral type may be used, but no attempt is
        made to prevent integer overflow, so don't use small integral types in
        circumstances where the values for those units aren't likely to fit in
        an integral type that small.
        The overload with no arguments returns the values for the units in a
        struct with members whose names are the same as the given time unit
        strings. The members are all longs. This overload will also work
        with no time strings being given, in which case all of the time
        units from weeks through hnsecs will be provided (but no nsecs, since it
        would always be 0).
        For both overloads, the entire value of the Duration is split among the
        units (rather than splitting the Duration across all units and then only
        providing the values for the requested units), so if only one unit is
        given, the result is equivalent to total.
        "nsecs" is accepted by split, but "years" and "months"
        are not.
For negative durations, all of the split values will be negative.
Contained Functions
| Name | Description | 
|---|---|
| split | 
Example
{
    auto d = dur!"days"(12) + dur!"minutes"(7) + dur!"usecs"(501223);
    long days;
    int seconds;
    short msecs;
    dAuthors
Jonathan M Davis and Kato Shoichi