go-hexadeca/runes/encodeint16.go

25 lines
781 B
Go
Raw Normal View History

2023-10-28 19:02:30 +00:00
package hexadecarunes
import (
"sourcecode.social/reiver/go-hexadeca/symbols/rune"
)
func EncodeInt16(value int16, 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 EncodeInt16UsingLowerCaseSymbols(value int16) (r3 rune, r2 rune, r1 rune, r0 rune) {
return EncodeInt16(value, runesymbols.LowerCase)
}
func EncodeInt16UsingPersianSymbols(value int16) (r3 rune, r2 rune, r1 rune, r0 rune) {
return EncodeInt16(value, runesymbols.Persian)
}
func EncodeInt16UsingUpperCaseSymbols(value int16) (r3 rune, r2 rune, r1 rune, r0 rune) {
return EncodeInt16(value, runesymbols.UpperCase)
}