mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-04 02:37:50 +08:00
3f4bbff9c5
The same code will be used to sort map keys when printing maps. This addresses #1495.
82 lines
1.4 KiB
Go
82 lines
1.4 KiB
Go
package eval
|
|
|
|
import (
|
|
"src.elv.sh/pkg/eval/errs"
|
|
"src.elv.sh/pkg/eval/vals"
|
|
)
|
|
|
|
// Basic predicate commands.
|
|
|
|
func init() {
|
|
addBuiltinFns(map[string]any{
|
|
"bool": vals.Bool,
|
|
"not": not,
|
|
"is": is,
|
|
"eq": eq,
|
|
"not-eq": notEq,
|
|
"compare": compare,
|
|
})
|
|
}
|
|
|
|
func not(v any) bool {
|
|
return !vals.Bool(v)
|
|
}
|
|
|
|
func is(args ...any) bool {
|
|
for i := 0; i+1 < len(args); i++ {
|
|
if args[i] != args[i+1] {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
func eq(args ...any) bool {
|
|
for i := 0; i+1 < len(args); i++ {
|
|
if !vals.Equal(args[i], args[i+1]) {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
func notEq(args ...any) bool {
|
|
for i := 0; i+1 < len(args); i++ {
|
|
if vals.Equal(args[i], args[i+1]) {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
// ErrUncomparable is raised by the compare and order commands when inputs contain
|
|
// uncomparable values.
|
|
var ErrUncomparable = errs.BadValue{
|
|
What: `inputs to "compare" or "order"`,
|
|
Valid: "comparable values", Actual: "uncomparable values"}
|
|
|
|
type compareOptions struct {
|
|
Total bool
|
|
}
|
|
|
|
func (opts *compareOptions) SetDefaultOptions() {}
|
|
|
|
func compare(opts compareOptions, a, b any) (int, error) {
|
|
var o vals.Ordering
|
|
if opts.Total {
|
|
o = vals.CmpTotal(a, b)
|
|
} else {
|
|
o = vals.Cmp(a, b)
|
|
}
|
|
switch o {
|
|
case vals.CmpLess:
|
|
return -1, nil
|
|
case vals.CmpEqual:
|
|
return 0, nil
|
|
case vals.CmpMore:
|
|
return 1, nil
|
|
default:
|
|
return 0, ErrUncomparable
|
|
}
|
|
}
|