Update README.md with some of the plan

This commit is contained in:
idk
2021-04-22 23:47:15 -04:00
parent 7893694c91
commit 49d7eeb441
5 changed files with 18 additions and 19 deletions

View File

@ -31,10 +31,8 @@ func Integer(number []byte) (value int) {
return
}
func IntegerBytes(value int) (number []byte) {
number = make([]byte, INTEGER_SIZE)
binary.BigEndian.PutUint64(number, uint64(value))
return
}
}