package fastfloat

Import Path
	github.com/valyala/fastjson/fastfloat (on go.dev)

Dependency Relation
	imports 4 packages, and imported by one package

Involved Source Files parse.go
Package-Level Functions (total 6, all are exported)
Parse parses floating-point number s. It is equivalent to strconv.ParseFloat(s, 64), but is faster. See also 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.
ParseInt64 parses int64 number s. It is equivalent to strconv.ParseInt(s, 10, 64), but is faster. See also 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.
ParseUint64 parses uint64 from s. It is equivalent to strconv.ParseUint(s, 10, 64), but is faster. See also 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.
Package-Level Variables (total 3, none are exported)