MCPcopy Create free account
hub / github.com/d5/tengo / String

Method String

objects.go:162–168  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

160}
161
162func (o *Array) String() string {
163 var elements []string
164 for _, e := range o.Value {
165 elements = append(elements, e.String())
166 }
167 return fmt.Sprintf("[%s]", strings.Join(elements, ", "))
168}
169
170// BinaryOp returns another object that is the result of a given binary
171// operator and a right-hand side object.

Callers

nothing calls this directly

Calls 1

StringMethod · 0.65

Tested by

no test coverage detected