twink/vendor/github.com/alexflint/go-scalar
2025-12-05 12:20:05 +01:00
..
.gitignore feat: initial commit 2025-12-05 12:20:05 +01:00
LICENSE feat: initial commit 2025-12-05 12:20:05 +01:00
README.md feat: initial commit 2025-12-05 12:20:05 +01:00
scalar.go feat: initial commit 2025-12-05 12:20:05 +01:00

GoDoc Build Status Coverage Status Report Card

Scalar parsing library

Scalar is a library for parsing strings into arbitrary scalars (integers, floats, strings, booleans, etc). It is helpful for tasks such as parsing strings passed as environment variables or command line arguments.

go get github.com/alexflint/go-scalar

The main API works as follows:

var value int
err := scalar.Parse(&value, "123")

There is also a variant that takes a reflect.Value:

var value int
err := scalar.ParseValue(reflect.ValueOf(&value), "123")