go-hexadeca/encodebyte.go

19 lines
586 B
Go

package hexadeca
import (
"github.com/reiver/go-hexadeca/bytes"
"github.com/reiver/go-hexadeca/runes"
)
func EncodeByteUsingLowerCaseSymbols(value byte) (mostSignificant byte, leastSignificant byte) {
return hexadecabytes.EncodeByteUsingLowerCaseSymbols(value)
}
func EncodeByteUsingPersianSymbols(value byte) (mostSignificant rune, leastSignificant rune) {
return hexadecarunes.EncodeByteUsingPersianSymbols(value)
}
func EncodeByteUsingUpperCaseSymbols(value byte) (mostSignificant byte, leastSignificant byte) {
return hexadecabytes.EncodeByteUsingUpperCaseSymbols(value)
}