Function difference$

  • Obtain entries not present in another map.

    Type Parameters

    • K

    • V

    Parameters

    • x: Map<K, V>

      a map (updated)

    • y: Entries<K, V>

      another map

    Returns Map<K, V>

    x = x - y = {[kᵢ, vᵢ] | [kᵢ, vᵢ] ∈ x, [kᵢ, *] ∉ y}

Generated using TypeDoc