Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integer bit mask based allocators? #21

Open
MaulingMonkey opened this issue May 12, 2023 · 0 comments
Open

Integer bit mask based allocators? #21

MaulingMonkey opened this issue May 12, 2023 · 0 comments
Labels
allocator Allocator implementation(s) related enhancement New feature or request

Comments

@MaulingMonkey
Copy link
Owner

trait Unsigned {
    const BITS : usize = 8 * size_of::<Self>();
    fn bit(i: usize) -> Self { todo!() }
}
impl Unsigned for u8 {}
impl Unsigned for u16 {}
impl Unsigned for u32 {}
impl Unsigned for u64 {}
impl Unsigned for u128 {}
impl Unsigned for usize {}

struct ChunkAllocator<B: Unsigned, T>(B, [T; B::BITS]); // ?
@MaulingMonkey MaulingMonkey added enhancement New feature or request allocator Allocator implementation(s) related labels May 22, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
allocator Allocator implementation(s) related enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant