Interface CellPred<T>

    A predicate over an element cell; optional assert(c) makes the test pass by writing the cell.

    interface CellPred<T> {
        assert?: (c: Cell<T>) => void;
        (c: Cell<T>): boolean;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    assert?: (c: Cell<T>) => void