mirror of
https://github.com/Dummi26/mers.git
synced 2026-01-18 00:00:28 +01:00
add iterable ranges (range_inc / range_exc)
This commit is contained in:
@@ -4,7 +4,7 @@ use crate::info::DisplayInfo;
|
||||
|
||||
use super::{MersData, MersType, Type};
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
#[derive(Debug, Clone, PartialEq)]
|
||||
pub struct Float(pub f64);
|
||||
|
||||
impl MersData for Float {
|
||||
|
||||
@@ -41,7 +41,7 @@ pub const INT32U_MAX: isize = if isize::BITS > u32::BITS {
|
||||
isize::MAX
|
||||
};
|
||||
|
||||
#[derive(Debug, Clone, Copy)]
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||
pub struct Int(pub isize);
|
||||
|
||||
impl MersData for Int {
|
||||
|
||||
Reference in New Issue
Block a user