hexga_tools 0.0.10-beta.16

miscellaneous stuff, when somethings will be too big it will be on a separate crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(unused_imports)]
#![allow(unused_macros)]

use std::ops::*;
use std::fmt::{Debug, Display, Formatter, Result as DResult};
use std::marker::PhantomData;

use hexga_number::*;
pub use hexga_core::prelude::*;

#[cfg(feature = "serde")]
use serde::{Serialize, Serializer, Deserialize, Deserializer, de::Visitor, ser::SerializeStruct};

pub mod prelude;

pub mod non_empty_stack;