go-hexadeca/encodebyte.go

19 lines
600 B
Go
Raw Normal View History

2023-10-28 05:13:42 +00:00
package hexadeca
import (
"sourcecode.social/reiver/go-hexadeca/bytes"
2023-10-28 05:19:53 +00:00
"sourcecode.social/reiver/go-hexadeca/runes"
2023-10-28 05:13:42 +00:00
)
func EncodeByteUsingLowerCaseSymbols(value byte) (mostSignificant byte, leastSignificant byte) {
return hexadecabytes.EncodeByteUsingLowerCaseSymbols(value)
}
2023-10-28 05:19:53 +00:00
func EncodeByteUsingPersianSymbols(value byte) (mostSignificant rune, leastSignificant rune) {
return hexadecarunes.EncodeByteUsingPersianSymbols(value)
}
2023-10-28 05:13:42 +00:00
func EncodeByteUsingUpperCaseSymbols(value byte) (mostSignificant byte, leastSignificant byte) {
return hexadecabytes.EncodeByteUsingUpperCaseSymbols(value)
}