Free Touch Pricker
    Preparing search index...

    Type Alias Change

    Change: (row: MutableRow) => void

    A change

    Changes permute a row in order to generate the next row. They should be constructed using changeFromNotation().

    > const row = Pricker.rounds(Pricker.Stage.Triples);
    [1, 2, 3, 4, 5, 6, 7]
    > const change = Pricker.changeFromNotation('1', Pricker.Stage.Triples);
    1
    > change(row);
    [1, 3, 2, 5, 4, 7, 6]

    Type Declaration