xgo/objects/builtin_append.go

20 lines
413 B
Go
Raw Normal View History

2019-01-09 10:17:42 +03:00
package objects
import (
"fmt"
)
// append(src, items...)
func builtinAppend(args ...Object) (Object, error) {
if len(args) < 2 {
return nil, fmt.Errorf("not enough arguments in call to append")
}
switch arg := args[0].(type) {
case *Array:
return &Array{Value: append(arg.Value, args[1:]...)}, nil
default:
return nil, fmt.Errorf("unsupported type for 'append' function: %s", arg.TypeName())
}
}