()
| 813 | } |
| 814 | |
| 815 | func (o *ImmutableArray) String() string { |
| 816 | var elements []string |
| 817 | for _, e := range o.Value { |
| 818 | elements = append(elements, e.String()) |
| 819 | } |
| 820 | return fmt.Sprintf("[%s]", strings.Join(elements, ", ")) |
| 821 | } |
| 822 | |
| 823 | // BinaryOp returns another object that is the result of a given binary |
| 824 | // operator and a right-hand side object. |