This enables e.g. `dict["key"_sl] = 17`
| 192 | |
| 193 | // This enables e.g. `dict["key"_sl] = 17` |
| 194 | inline keyref<MutableDict,slice> operator[] (slice key) |
| 195 | {return keyref<MutableDict,slice>(*this, key);} |
| 196 | inline keyref<MutableDict,slice> operator[] (const char *key) |
| 197 | {return keyref<MutableDict,slice>(*this, slice(key));} |
| 198 | inline keyref<MutableDict,Key&> operator[] (Key &key) |