Interval Implicit  Conversion Operators

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Implicit(Interval to Interval<Double>) Implicitly converts a specialized interval of real numbers to a generic interval.
Implicit(Interval<Double> to Interval) Implicitly converts a generic interval of real numbers to a specialized interval.

Interval Implicit  Conversion (Interval to

Implicitly converts a specialized interval of real numbers to a generic interval.
C#
public static implicit operator Interval<double> (
	Interval interval
)

Parameters

interval  Interval
The interval to convert.

Return Value

Interval<Double>
A generic interval of real numbers with the same bounds as interval.

Interval Implicit  Conversion (Interval<Double> to

Implicitly converts a generic interval of real numbers to a specialized interval.
C#
public static implicit operator Interval (
	Interval<double> interval
)

Parameters

interval  Interval<Double>
The interval to convert.

Return Value

Interval
A real interval with the same bounds as interval.

See Also