Akka.Cluster.MetricNumericConverter.Defined C# (CSharp) Method

Defined() public static method

A defined value is greater than zero and not NaN / Infinity
public static Defined ( double value ) : bool
value double
return bool
        public static bool Defined(double value)
        {
            return (value >= 0) && !(Double.IsNaN(value) || Double.IsInfinity(value));
        }
MetricNumericConverter