Click or drag to resize

MultiStepMethodBaseEnumerationForwardToGreaterThan Method

Moves the enumerator so that the current element is greater than the provided x value.

Namespace: Altaxo.Calc.Ode
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
protected static double? EnumerationForwardToGreaterThan(
	ref IEnumerator<double>?? enumerator,
	double x
)

Parameters

enumerator  IEnumeratorDouble
The enumerator. If the enumerator no longer has any elements, this reference is set to null.
x  Double
The x value.

Return Value

NullableDouble
The current element that is greater than the provided x value, or null, if the enumeration has run out of elements.
See Also