All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jacobtread.blaze.data.VarPair.kt Maven / Gradle / Ivy

The newest version!
package com.jacobtread.blaze.data

data class VarPair(val a: ULong, val b: ULong) {
    constructor(a: UInt, b: UInt) : this(a.toULong(), b.toULong())
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy