use num_bigint::BigInt;
use crate::{ConvertibleToPortSlice, Port};
impl Port {
pub fn tieoff<T: Into<BigInt>>(&self, value: T) {
self.to_port_slice().tieoff(value);
}
pub fn unused(&self) {
self.to_port_slice().unused();
}
pub fn unused_or_tieoff<T: Into<BigInt>>(&self, value: T) {
self.to_port_slice().unused_or_tieoff(value);
}
}