+~(_:_:)

public func +~ <K, V>(lhs: inout [K : V], rhs: [K : V]) where K : Hashable

Merges two dictionary using Dictionary.combine(_:)

Parameters

lhs

Base dictionary

rhs

Other dictionary which should be merged with the base one.