Source File
byteseq.go
Belonging Package
github.com/go-faster/jx/internal/byteseq
// Package byteseq provides a Byteseq type that can be used to represent a sequence of bytes.
package byteseq
import
// Byteseq is common interface for byte slices and strings.
type Byteseq interface {
string | []byte
}
// DecodeRuneInByteseq decodes the first UTF-8 encoded rune in val and returns the rune and its size in bytes.
func [ Byteseq]( ) ( rune, int) {
var [4]byte
:= copy([:], )
return utf8.DecodeRune([:])
}
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |