summaryrefslogtreecommitdiff
path: root/src/main/kotlin/SizedMessageField.kt
blob: 160bc4885ac5075e8ec620eb2716a51081c3cc5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import java.math.BigInteger
import kotlin.math.floor

class SizedMessageField(size: Int, value: BigInteger) {
    init {
        val requiredSize = value.
    }

    val size = size
    val value = value

}