Interval Implicit Conversion Operators
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
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. |
Implicit Conversion (Interval to Interval<Double>)
Implicitly converts a specialized interval of real numbers to a generic interval.
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.
Implicit Conversion (Interval<Double> to Interval)
Implicitly converts a generic interval of real numbers to a specialized interval.
public static implicit operator Interval (
Interval<double> interval
)
Parameters
Return Value
IntervalA real interval with the same bounds as interval.