mirror of
https://github.com/Dummi26/mers.git
synced 2026-03-04 08:36:33 +01:00
add Byte to replace Int when appropriate
This commit is contained in:
@@ -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 {
|
||||
|
||||
@@ -5,6 +5,7 @@ use std::{
|
||||
};
|
||||
|
||||
pub mod bool;
|
||||
pub mod byte;
|
||||
pub mod float;
|
||||
pub mod function;
|
||||
pub mod int;
|
||||
|
||||
Reference in New Issue
Block a user