1 2 3 4 5 6 7
use crate::types::BigUint;
use super::ManagedTypeApi;
pub trait PrintApi: ManagedTypeApi {
fn print_biguint(&self, biguint: &BigUint<Self>);
}
1 2 3 4 5 6 7
use crate::types::BigUint;
use super::ManagedTypeApi;
pub trait PrintApi: ManagedTypeApi {
fn print_biguint(&self, biguint: &BigUint<Self>);
}