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
alterF in containers has an internal lookup function that looks up a key in a Map. If the key is present, then it returns not only the associated value but also a record of where the key was found. If the key is absent, it returns a record of where the key would be inserted. I don't think information about missing keys is likely all that useful for this package. However, for maps with static key sets, it could be interesting to have one or more additional types.
alterF
incontainers
has an internal lookup function that looks up a key in aMap
. If the key is present, then it returns not only the associated value but also a record of where the key was found. If the key is absent, it returns a record of where the key would be inserted. I don't think information about missing keys is likely all that useful for this package. However, for maps with static key sets, it could be interesting to have one or more additional types.It's possible to write functions like
The text was updated successfully, but these errors were encountered: