28 lines
670 B
Go
28 lines
670 B
Go
package objects
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func builtinLen(args ...Object) (Object, error) {
|
|
if len(args) != 1 {
|
|
return nil, ErrWrongNumArguments
|
|
}
|
|
|
|
switch arg := args[0].(type) {
|
|
case *Array:
|
|
return &Int{Value: int64(len(arg.Value))}, nil
|
|
case *ImmutableArray:
|
|
return &Int{Value: int64(len(arg.Value))}, nil
|
|
case *String:
|
|
return &Int{Value: int64(len(arg.Value))}, nil
|
|
case *Bytes:
|
|
return &Int{Value: int64(len(arg.Value))}, nil
|
|
case *Map:
|
|
return &Int{Value: int64(len(arg.Value))}, nil
|
|
case *ImmutableMap:
|
|
return &Int{Value: int64(len(arg.Value))}, nil
|
|
default:
|
|
return nil, fmt.Errorf("unsupported type for 'len' function: %s", arg.TypeName())
|
|
}
|
|
}
|