Interface IDissocIn<K, V, T>

Extension of IAssocIn for types supporting key removals.

interface IDissocIn<K, V, T> {
    assocIn(key, val): T;
    dissocIn(key): T;
    updateIn(key, f): T;
}

Type Parameters

  • K

    key type

  • V

    value type

  • T

    return type

Hierarchy (view full)

Methods

Generated using TypeDoc