mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
17 lines
252 B
Rust
17 lines
252 B
Rust
#[derive(Copy)]
|
|
pub struct U256(pub [u64; 4]);
|
|
|
|
impl Clone for U256 {
|
|
fn clone(&self) -> U256 {
|
|
*self
|
|
}
|
|
}
|
|
|
|
impl U256 {
|
|
pub fn new(value: u64) -> U256 {
|
|
let mut ret = [0; 4];
|
|
ret[0] = value;
|
|
U256(ret)
|
|
}
|
|
}
|