Type alias ModifyOptions<T>

ModifyOptions<T>: {
    add?: Iterable<MapEntry<T>>;
    remove?: Iterable<MapKey<T>>;
}

Options describing the necessary changes when calling modify.

Type Parameters

Type declaration

  • Optional add?: Iterable<MapEntry<T>>

    Entries that need to be added to the Map.

  • Optional remove?: Iterable<MapKey<T>>

    Keys that need to be removed from the Map.