You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
692 B
32 lines
692 B
2 years ago
|
package variable
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"strconv"
|
||
|
|
||
|
"gitoa.ru/go-4devs/console/input/flag"
|
||
|
"gitoa.ru/go-4devs/console/input/value"
|
||
|
)
|
||
|
|
||
|
func Int(name, description string, opts ...Option) Variable {
|
||
|
return New(name, description, append(opts, WithParse(CreateInt, AppendInt), Value(flag.Int))...)
|
||
|
}
|
||
|
|
||
|
func AppendInt(old value.Value, in string) (value.Value, error) {
|
||
|
out, err := strconv.Atoi(in)
|
||
|
if err != nil {
|
||
|
return nil, fmt.Errorf("append int:%w", err)
|
||
|
}
|
||
|
|
||
|
return value.NewInts(append(old.Ints(), out)), nil
|
||
|
}
|
||
|
|
||
|
func CreateInt(in string) (value.Value, error) {
|
||
|
out, err := strconv.Atoi(in)
|
||
|
if err != nil {
|
||
|
return nil, fmt.Errorf("create int:%w", err)
|
||
|
}
|
||
|
|
||
|
return value.NewInt(out), nil
|
||
|
}
|