Typeberry by Fluffy Labs - v0.5.2
    Preparing search index...

    Interface IMemory

    Allows store and read segments of memory.

    interface IMemory {
        read(address: U32, result: Uint8Array): Result<typeof OK, PageFault>;
        store(address: U32, bytes: Uint8Array): Result<typeof OK, PageFault>;
    }

    Implemented by

    Index

    Methods

    Methods