Delegate Dykstra<T>.WasFoundDelegate
A signature of the was found callback function.
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public delegate bool WasFoundDelegate(uint pointer, uint vertex, T weight);
Parameters
System.UInt32
pointer
The pointer in the path three, can be used to retrieve the complete path. |
System.UInt32
vertex
The vertex found. |
T
weight
The weight at the vertex. |
Returns
System.Boolean
when true is returned, the listener signals it knows what it wants to know and the search stops. |
Remarks
Yes, we can use Func but this is less confusing and contains meaning about the parameters.