go-hexadeca/encodeint8.go

19 lines
600 B
Go
Raw Normal View History

2023-10-28 20:35:39 +00:00
package hexadeca
import (
"sourcecode.social/reiver/go-hexadeca/bytes"
"sourcecode.social/reiver/go-hexadeca/runes"
)
func EncodeInt8UsingLowerCaseSymbols(value int8) (mostSignificant byte, leastSignificant byte) {
return hexadecabytes.EncodeInt8UsingLowerCaseSymbols(value)
}
func EncodeInt8UsingPersianSymbols(value int8) (mostSignificant rune, leastSignificant rune) {
return hexadecarunes.EncodeInt8UsingPersianSymbols(value)
}
func EncodeInt8UsingUpperCaseSymbols(value int8) (mostSignificant byte, leastSignificant byte) {
return hexadecabytes.EncodeInt8UsingUpperCaseSymbols(value)
}