fastfloat

package
v0.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 4, 2022 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Parse

func Parse(s string) (float64, error)

Parse parses floating-point number s.

It is equivalent to strconv.ParseFloat(s, 64), but is faster.

See also ParseBestEffort.

func ParseBestEffort

func ParseBestEffort(s string) float64

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

func ParseInt64(s string) (int64, error)

ParseInt64 parses int64 number s.

It is equivalent to strconv.ParseInt(s, 10, 64), but is faster.

See also ParseInt64BestEffort.

func ParseInt64BestEffort

func ParseInt64BestEffort(s string) int64

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

func ParseUint64(s string) (uint64, error)

ParseUint64 parses uint64 from s.

It is equivalent to strconv.ParseUint(s, 10, 64), but is faster.

See also ParseUint64BestEffort.

func ParseUint64BestEffort

func ParseUint64BestEffort(s string) uint64

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.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL