core.time.Duration.toString  - multiple declarations
				Function Duration.toString
Converts this Duration to a string.
						
				void toString(SinkT)
				(
				
				  scope SinkT sink
				
				) const scope;
						
					
				The string is meant to be human readable, not machine parseable (e.g.
        whether there is an 's' on the end of the unit name usually depends on
        whether it's plural or not, and empty units are not included unless the
        Duration is zero). Any code needing a specific string format should
        use total or split to get the units needed to create the desired
        string format and create the string itself.
The format returned by toString may or may not change in the future.
Parameters
| Name | Description | 
|---|---|
| sink | A sink object, expected to be a delegate or aggregate
                 implementing opCallthat accepts ascope const(char)[]as argument. | 
Function Duration.toString
Returns the total number of the given units in this Duration.
        So, unlike split, it does not strip out the larger units.
						
				string toString() pure nothrow @safe const;
						
					
				Example
writeln(dur!"weeks"(12)Example
writeln(DurationAuthors
Jonathan M Davis and Kato Shoichi