solidity [0.8.18 ]( https://github.com/ethereum/solidity/releases/tag/v0.8.18) introduced named parameters in mapping types. I would make sense to implement this new feature to increase the code readability. here is an example: ``` mapping(uint256 characterId => mapping(address operator => uint256 permissionsBitMap)) internal _operatorsPermissionBitMap; // slot 25 ```