Home
last modified time | relevance | path

Searched defs:stringCodepoints (Results 1 – 1 of 1) sorted by relevance

/external/starlark-go/starlark/
Dvalue.go610 type stringCodepoints struct { struct
611 s String
612 ords bool
617 func (si stringCodepoints) String() string {
624 func (si stringCodepoints) Type() string { return "string.codepoints" }
625 func (si stringCodepoints) Freeze() {} // immutable
626 func (si stringCodepoints) Truth() Bool { return True }
627 … (si stringCodepoints) Hash() (uint32, error) { return 0, fmt.Errorf("unhashable: %s", si.Type()) }
628 func (si stringCodepoints) Iterate() Iterator { return &stringCodepointsIterator{si, 0} }