C# Class Composable.System.TimeSpanEnumerableExtensions

Methods like Sum,Min,Average etc for IEnumerable<TimeSpan>
Show file Open project: mlidbom/Composable.Monolithic

Public Methods

Method Description
Average ( this @this ) : System.TimeSpan

Returns the average of the timespans

Max ( this @this ) : System.TimeSpan

Returns the largest timespans

Min ( this @this ) : System.TimeSpan

Returns the smallest timespans

Sum ( this @this ) : System.TimeSpan

Returns the sum of the timespans

Method Details

Average() public static method

Returns the average of the timespans
public static Average ( this @this ) : System.TimeSpan
@this this
return System.TimeSpan

Max() public static method

Returns the largest timespans
public static Max ( this @this ) : System.TimeSpan
@this this
return System.TimeSpan

Min() public static method

Returns the smallest timespans
public static Min ( this @this ) : System.TimeSpan
@this this
return System.TimeSpan

Sum() public static method

Returns the sum of the timespans
public static Sum ( this @this ) : System.TimeSpan
@this this
return System.TimeSpan