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
/**
:name: removeValueForKey
:description: Removes a single instance of a value for a key. This is
important when using non-unique keys.
- returns: Value?
*/
publicfunc removeInstanceValueForKey(_ key:Key)->Value?{}
Should be updated to the newer style:
/**
Removes a single instance of a value for a key. This is
important when using non-unique keys.
- Parameter _ key: A Key.
- Returns: Removed Value for given key, nil on fail.
*/
publicfunc removeInstanceValueForKey(_ key:Key)->Value?{}