GraphSelect Method (PropertyType, FuncIComparable, IComparable, IComparable, Boolean, IComparable, IComparable) |
numerates all elements satisfying the given condition for the given property and value range
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public IEnumerable<IElement> Select(
PropertyType property,
Func<IComparable, IComparable, IComparable, bool> condition,
IComparable lower,
IComparable higher
)
Public Function Select (
property As PropertyType,
condition As Func(Of IComparable, IComparable, IComparable, Boolean),
lower As IComparable,
higher As IComparable
) As IEnumerable(Of IElement)
public:
IEnumerable<IElement^>^ Select(
PropertyType^ property,
Func<IComparable^, IComparable^, IComparable^, bool>^ condition,
IComparable^ lower,
IComparable^ higher
)
member Select :
property : PropertyType *
condition : Func<IComparable, IComparable, IComparable, bool> *
lower : IComparable *
higher : IComparable -> IEnumerable<IElement>
Parameters
- property
- Type: VelocityGraphPropertyType
Property we are looking for - condition
- Type: SystemFuncIComparable, IComparable, IComparable, Boolean
filter function, applied with in graph value as 1st parameter, lower as 2nd and higher as 3rd parameter. - lower
- Type: SystemIComparable
lower value in filtering - higher
- Type: SystemIComparable
higher value in filtering
Return Value
Type:
IEnumerableIElement[Missing <returns> documentation for "M:VelocityGraph.Graph.Select(VelocityGraph.PropertyType,System.Func{System.IComparable,System.IComparable,System.IComparable,System.Boolean},System.IComparable,System.IComparable)"]
See Also