Trait kernel::forth::ConvertWord
source · trait ConvertWord {
// Required methods
fn into_usize(self) -> Result<usize, Error>;
fn into_u16(self) -> Result<u16, Error>;
fn into_i32(self) -> i32;
}
Expand description
Temporary helper extension trait. Should probably be upstreamed
into forth3
at a later date.