Skip to main content

luminos_contracts/support/
arrayable.rs

1pub trait Arrayable{
2    type T;
3
4    fn to_array(&self) -> Vec<Self::T>;
5}