Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Parse ¶
Parse parses floating-point number s.
It is equivalent to strconv.ParseFloat(s, 64), but is faster.
See also ParseBestEffort.
func ParseBestEffort ¶
ParseBestEffort parses floating-point number s.
It is equivalent to strconv.ParseFloat(s, 64), but is faster.
0 is returned if the number cannot be parsed. See also Parse, which returns parse error if the number cannot be parsed.
func ParseInt64 ¶
ParseInt64 parses int64 number s.
It is equivalent to strconv.ParseInt(s, 10, 64), but is faster.
See also ParseInt64BestEffort.
func ParseInt64BestEffort ¶
ParseInt64BestEffort parses int64 number s.
It is equivalent to strconv.ParseInt(s, 10, 64), but is faster.
0 is returned if the number cannot be parsed. See also ParseInt64, which returns parse error if the number cannot be parsed.
func ParseUint64 ¶
ParseUint64 parses uint64 from s.
It is equivalent to strconv.ParseUint(s, 10, 64), but is faster.
See also ParseUint64BestEffort.
func ParseUint64BestEffort ¶
ParseUint64BestEffort parses uint64 number s.
It is equivalent to strconv.ParseUint(s, 10, 64), but is faster.
0 is returned if the number cannot be parsed. See also ParseUint64, which returns parse error if the number cannot be parsed.
Types ¶
This section is empty.