atox

package
v1.0.10 Latest Latest
Warning

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

Go to latest
Published: Apr 12, 2024 License: MIT, MIT Imports: 4 Imported by: 0

README

forked from josharian/atox

Package atox converts ASCII to numbers. It assumes base 10. (TODO: Should it use base 0, i.e. instead accept arbitrary Go constants, like "0b1011" and "10_000"?)

It is a generic wrapper for the Parse* functions in the strconv package.

It is mainly helpful when you are writing other generic code that needs to parse number out of strings.

Sample use:

half, err := atox.N[float64]("1.5")

half := atox.Must[float32]("1.5")

eleven, err := atox.N[int]("11")

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Must

func Must[T generic.Float | generic.Integer](s string) T

func N

func N[T generic.Float | generic.Integer](s string) (T, error)

Types

This section is empty.

Jump to

Keyboard shortcuts

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