Interface Read<T>

    Covariant read-only surface.

    interface Read<out T> {
        value: T;
        peek(): T;
    }

    Type Parameters

    • out T
    Hierarchy
    Index

    Methods

    Properties

    Methods

    Properties

    value: T