ic-memory 0.9.0

Durable stable-memory allocation governance for Internet Computer canisters
Documentation
1
2
3
4
5
6
7
8
9
10
11
use ic_memory::{CommittedAllocations, ValidatedAllocations};

fn requires_committed(_allocations: CommittedAllocations) {}

fn validated() -> ValidatedAllocations {
    loop {}
}

fn main() {
    requires_committed(validated());
}