Actions
Feature #13645
openSyntactic sugar for indexing when using the safe navigation operator
Feature #13645:
Syntactic sugar for indexing when using the safe navigation operator
Status:
Open
Assignee:
-
Target version:
-
Description
Proposal¶
While it works and makes sense, this is a bit cumbersome:
hash&.[](:key)
Ideally, we could use something like:
hash&.[:key]
Actions