This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use std::marker::PhantomData; | |
| pub struct NegOne; | |
| pub struct Zero; | |
| pub struct Bit0<N>(PhantomData<N>); | |
| pub struct Bit1<N>(PhantomData<N>); | |
| macro_rules! t { | |
| ($accum:ty) => { |
OlderNewer