v1.3.0 add SetIfPresent
New function for atomic SetIfPresent
operation:
// SetIfPresent sets the kv only if the key was already present
// and returns the previous value (if any) and whether the insertion was performed
SetIfPresent(K, V) (V, bool)
kudos for @arthhhhh23 for implementing this