add Byte to replace Int when appropriate

This commit is contained in:
Mark
2024-04-15 14:07:05 +02:00
parent a1c585a30d
commit 45a46f32a5
10 changed files with 28 additions and 14 deletions

View File

@@ -2,7 +2,7 @@ use std::{any::Any, fmt::Display, sync::Arc};
use super::{MersData, MersType, Type};
#[derive(Debug, Clone)]
#[derive(Debug, Clone, Copy)]
pub struct Int(pub isize);
impl MersData for Int {

View File

@@ -5,6 +5,7 @@ use std::{
};
pub mod bool;
pub mod byte;
pub mod float;
pub mod function;
pub mod int;