* Remove newAddressSet
* Add count and get functions.
* Fix lint
(cherry picked from commit 7988c044e0)
38 lines
897 B
Solidity
38 lines
897 B
Solidity
pragma solidity ^0.5.0;
|
|
|
|
import "../utils/EnumerableSet.sol";
|
|
|
|
contract EnumerableSetMock{
|
|
using EnumerableSet for EnumerableSet.AddressSet;
|
|
|
|
event TransactionResult(bool result);
|
|
|
|
EnumerableSet.AddressSet private set;
|
|
|
|
function contains(address value) public view returns (bool) {
|
|
return set.contains(value);
|
|
}
|
|
|
|
function add(address value) public {
|
|
bool result = set.add(value);
|
|
emit TransactionResult(result);
|
|
}
|
|
|
|
function remove(address value) public {
|
|
bool result = set.remove(value);
|
|
emit TransactionResult(result);
|
|
}
|
|
|
|
function enumerate() public view returns (address[] memory) {
|
|
return set.enumerate();
|
|
}
|
|
|
|
function length() public view returns (uint256) {
|
|
return set.length();
|
|
}
|
|
|
|
function get(uint256 index) public view returns (address) {
|
|
return set.get(index);
|
|
}
|
|
}
|