123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- // SPDX-License-Identifier: MIT
- pragma solidity ^0.8.0;
- import "../utils/structs/EnumerableMapUpgradeable.sol";
- import "../proxy/utils/Initializable.sol";
- contract EnumerableMapMockUpgradeable is Initializable {
- function __EnumerableMapMock_init() internal onlyInitializing {
- }
- function __EnumerableMapMock_init_unchained() internal onlyInitializing {
- }
- using EnumerableMapUpgradeable for EnumerableMapUpgradeable.UintToAddressMap;
- event OperationResult(bool result);
- EnumerableMapUpgradeable.UintToAddressMap private _map;
- function contains(uint256 key) public view returns (bool) {
- return _map.contains(key);
- }
- function set(uint256 key, address value) public {
- bool result = _map.set(key, value);
- emit OperationResult(result);
- }
- function remove(uint256 key) public {
- bool result = _map.remove(key);
- emit OperationResult(result);
- }
- function length() public view returns (uint256) {
- return _map.length();
- }
- function at(uint256 index) public view returns (uint256 key, address value) {
- return _map.at(index);
- }
- function tryGet(uint256 key) public view returns (bool, address) {
- return _map.tryGet(key);
- }
- function get(uint256 key) public view returns (address) {
- return _map.get(key);
- }
- function getWithMessage(uint256 key, string calldata errorMessage) public view returns (address) {
- return _map.get(key, errorMessage);
- }
- /**
- * This empty reserved space is put in place to allow future versions to add new
- * variables without shifting down storage in the inheritance chain.
- * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
- */
- uint256[47] private __gap;
- }
|