7 references to DoubleParser
Microsoft.ML.Core (5)
Utilities\DoubleParser.cs (4)
89
/// This produces zero for an empty string, or NaN depending on the <see cref="
DoubleParser
.OptionFlags.EmptyAsNaN"/> used.
99
/// This produces zero for an empty string, or NaN depending on the <see cref="
DoubleParser
.OptionFlags.EmptyAsNaN"/> used.
143
if (!
DoubleParser
.TryParse(span.Slice(ich, span.Length - ich), out value, out ichEnd, flags))
195
if (!
DoubleParser
.TryParse(span.Slice(ich, span.Length - ich), out value, out ichEnd, flags))
Utilities\LineParser.cs (1)
33
if (
DoubleParser
.TryParse(valuesToParse.Slice(toParseStartIndex, i - toParseStartIndex), out float parsed))
Microsoft.ML.Data (2)
Data\Conversion.cs (2)
1371
/// This produces zero for empty, or NaN depending on the <see cref="
DoubleParser
.OptionFlags.EmptyAsNaN"/> used.
1385
/// This produces zero for empty, or NaN depending on the <see cref="
DoubleParser
.OptionFlags.EmptyAsNaN"/> used.