initial commits

master
Charles Iliya Krempeaux 2023-10-27 10:56:38 -07:00
parent e3525d18ec
commit 0c9d2efd0e
1 changed files with 30 additions and 0 deletions

View File

@ -28,6 +28,36 @@ mostSignificant, leastSignificant := hexadeca.EncodeByteUsingLowerCaseSymbols(va
mostSignificant, leastSignificant := hexadeca.EncodeByteUsingUpperCaseSymbols(value) mostSignificant, leastSignificant := hexadeca.EncodeByteUsingUpperCaseSymbols(value)
``` ```
A couple examples of encoding a `uint16` to hexidecimal.
```go
import "sourceccode.social/reiver/go-hexadeca"
// ...
r3, r2, r1, r0 = hexadeca.EncodeUint16UsingLowerCaseSymbols(value)
// ...
r3, r2, r1, r0 = hexadeca.EncodeUint16UsingLUpperCaseSymbols(value)
```
A couple examples of encoding a `uint32` to hexidecimal.
```go
import "sourceccode.social/reiver/go-hexadeca"
// ...
r7, r6, r5, r4, r3, r2, r1, r0 = hexadeca.EncodeUint32UsingLowerCaseSymbols(value)
// ...
r7, r6, r5, r4, r3, r2, r1, r0 = hexadeca.EncodeUint32UsingLUpperCaseSymbols(value)
```
A couple examples of encoding a `uint64` to hexidecimal. A couple examples of encoding a `uint64` to hexidecimal.
```go ```go