'Declaration
Public Overloads Shared Function LiveMin
(Of TSource,TResult)( _
ByVal source As View(Of TSource), _
ByVal selector As Expression(Of Func(Of TSource,TResult)) _
) As AggregationView(Of TSource,TResult)
public static AggregationView<TSource,TResult> LiveMin<TSource,TResult>( View<TSource> source, Expression<Func<TSource,TResult>> selector )
Parameters
- source
- A view containing the values to determine the minimum value of.
- selector
- A transform function to apply to each element.
Type Parameters
- TSource
- The type of the elements of source.
- TResult
- The type of the value returned by selector.
Return Value
A view representing the minimum of the values.