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
search() only finds the item you're searching for in the values of the iterable. e.g. search('foo', it) can only find 'foo', or nothing. If we want to know the key of the entry foo, there is currently no way to do this. searchKey('foo', it) would return the key pointing to the found 'foo'.
search()
only finds the item you're searching for in the values of the iterable. e.g.search('foo', it)
can only find'foo'
, or nothing. If we want to know the key of the entryfoo
, there is currently no way to do this.searchKey('foo', it)
would return the key pointing to the found'foo'
.@nikic Would you accept this feature?
The text was updated successfully, but these errors were encountered: