Home
last modified time | relevance | path

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

/external/starlark-go/starlark/
Dvalue.go610 type stringCodepoints struct { struct
615 var _ Iterable = (*stringCodepoints)(nil)
617 func (si stringCodepoints) String() string { argument
624 func (si stringCodepoints) Type() string { return "string.codepoints" } argument
625 func (si stringCodepoints) Freeze() {} // immutable argument
626 func (si stringCodepoints) Truth() Bool { return True } argument
627 func (si stringCodepoints) Hash() (uint32, error) { return 0, fmt.Errorf("unhashable: %s", si.Type(… argument
628 func (si stringCodepoints) Iterate() Iterator { return &stringCodepointsIterator{si, 0} } argument
631 si stringCodepoints
Dlibrary.go1460 return stringCodepoints{s, ords}, nil