initial commits

master
Charles Iliya Krempeaux 2023-10-27 01:05:41 -07:00
parent b4377f1805
commit e3525d18ec
1 changed files with 20 additions and 0 deletions

20
encodeuint16.go 100644
View File

@ -0,0 +1,20 @@
package hexadeca
func EncodeUint16(value uint16, symbolFunc func(byte)rune) (r3 rune, r2 rune, r1 rune, r0 rune) {
r3, r2 = EncodeByte(byte(0x00ff & (value >> (8 ))), symbolFunc)
r1, r0 = EncodeByte(byte(0x00ff & value ), symbolFunc)
return
}
func EncodeUint16UsingLowerCaseSymbols(value uint16) (r3 rune, r2 rune, r1 rune, r0 rune) {
return EncodeUint16(value, SymbolLowerCase)
}
func EncodeUint16UsingPersianSymbols(value uint16) (r3 rune, r2 rune, r1 rune, r0 rune) {
return EncodeUint16(value, SymbolPersian)
}
func EncodeUint16UsingUpperCaseSymbols(value uint16) (r3 rune, r2 rune, r1 rune, r0 rune) {
return EncodeUint16(value, SymbolUpperCase)
}