2023-10-28 05:13:42 +00:00
|
|
|
package hexadeca
|
|
|
|
|
|
|
|
import (
|
2024-07-25 11:33:45 +00:00
|
|
|
"github.com/reiver/go-hexadeca/bytes"
|
|
|
|
"github.com/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)
|
|
|
|
}
|