add PhantomConst #23

Merged
programmerjake merged 2 commits from programmerjake/fayalite:add-phantom-const into master 2025-03-10 05:51:21 +00:00
Showing only changes of commit 2fa0ea6192 - Show all commits

View file

@ -11,6 +11,7 @@ use crate::{
intern::{Intern, Interned}, intern::{Intern, Interned},
reset::{AsyncReset, Reset, SyncReset}, reset::{AsyncReset, Reset, SyncReset},
source_location::SourceLocation, source_location::SourceLocation,
util::ConstUsize,
}; };
use std::{fmt, hash::Hash, iter::FusedIterator, ops::Index}; use std::{fmt, hash::Hash, iter::FusedIterator, ops::Index};
@ -166,7 +167,7 @@ impl<T: 'static + Send + Sync> MatchVariantAndInactiveScope for MatchVariantWith
} }
pub trait FillInDefaultedGenerics { pub trait FillInDefaultedGenerics {
type Type: Type; type Type;
fn fill_in_defaulted_generics(self) -> Self::Type; fn fill_in_defaulted_generics(self) -> Self::Type;
} }
@ -178,6 +179,22 @@ impl<T: Type> FillInDefaultedGenerics for T {
} }
} }
impl FillInDefaultedGenerics for usize {
type Type = usize;
fn fill_in_defaulted_generics(self) -> Self::Type {
self
}
}
impl<const V: usize> FillInDefaultedGenerics for ConstUsize<V> {
type Type = ConstUsize<V>;
fn fill_in_defaulted_generics(self) -> Self::Type {
self
}
}
mod sealed { mod sealed {
pub trait TypeOrDefaultSealed {} pub trait TypeOrDefaultSealed {}
pub trait BaseTypeSealed {} pub trait BaseTypeSealed {}