initial commits
parent
33764fecda
commit
9f1f15a266
|
@ -2,16 +2,17 @@ package hexadeca
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"sourcecode.social/reiver/go-hexadeca/bytes"
|
"sourcecode.social/reiver/go-hexadeca/bytes"
|
||||||
|
"sourcecode.social/reiver/go-hexadeca/runes"
|
||||||
)
|
)
|
||||||
|
|
||||||
func EncodeByte(value byte, symbolFunc func(byte)byte) (mostSignificant byte, leastSignificant byte) {
|
|
||||||
return hexadecabytes.EncodeByte(value, symbolFunc)
|
|
||||||
}
|
|
||||||
|
|
||||||
func EncodeByteUsingLowerCaseSymbols(value byte) (mostSignificant byte, leastSignificant byte) {
|
func EncodeByteUsingLowerCaseSymbols(value byte) (mostSignificant byte, leastSignificant byte) {
|
||||||
return hexadecabytes.EncodeByteUsingLowerCaseSymbols(value)
|
return hexadecabytes.EncodeByteUsingLowerCaseSymbols(value)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func EncodeByteUsingPersianSymbols(value byte) (mostSignificant rune, leastSignificant rune) {
|
||||||
|
return hexadecarunes.EncodeByteUsingPersianSymbols(value)
|
||||||
|
}
|
||||||
|
|
||||||
func EncodeByteUsingUpperCaseSymbols(value byte) (mostSignificant byte, leastSignificant byte) {
|
func EncodeByteUsingUpperCaseSymbols(value byte) (mostSignificant byte, leastSignificant byte) {
|
||||||
return hexadecabytes.EncodeByteUsingUpperCaseSymbols(value)
|
return hexadecabytes.EncodeByteUsingUpperCaseSymbols(value)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue