Searched refs:stringCodepoints (Results 1 – 2 of 2) sorted by relevance
610 type stringCodepoints struct { struct615 var _ Iterable = (*stringCodepoints)(nil)617 func (si stringCodepoints) String() string { argument624 func (si stringCodepoints) Type() string { return "string.codepoints" } argument625 func (si stringCodepoints) Freeze() {} // immutable argument626 func (si stringCodepoints) Truth() Bool { return True } argument627 func (si stringCodepoints) Hash() (uint32, error) { return 0, fmt.Errorf("unhashable: %s", si.Type(… argument628 func (si stringCodepoints) Iterate() Iterator { return &stringCodepointsIterator{si, 0} } argument631 si stringCodepoints
1460 return stringCodepoints{s, ords}, nil