You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// MergeFunc takes two V and merges them into a single value.
// A nil MergeFunc always returns the lhs value.
//
// MergeFunc is used for combining the values of a key that exists in two maps that are being combined in some way.
//
// When used with a [ContainsFunc], both lhs and rhs will have passed the check before the MergeFunc is called and the resulting value is also checked.