blob: d559ae296bf05301fe442775e0ce8edbb061fa8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Touch.Converters
{
internal static class LocalEx
{
public static double ExtractDouble(this object val)
{
var d = val as double? ?? double.NaN;
return double.IsInfinity(d) ? double.NaN : d;
}
public static bool AnyNan(this IEnumerable<double> vals)
{
return vals.Any(double.IsNaN);
}
}
}
|