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

Method String

objects.go:815–821  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

813}
814
815func (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.

Callers

nothing calls this directly

Calls 1

StringMethod · 0.65

Tested by

no test coverage detected