EnumerableSetUD60x18

Git Source

Functions

at

Returns the element at a given index i in the enumerable set self

function at(EnumerableSet.Bytes32Set storage self, uint256 i) internal view returns (UD60x18);

contains

Returns true if the enumerable set self contains value

function contains(EnumerableSet.Bytes32Set storage self, UD60x18 value) internal view returns (bool);

indexOf

Returns the index of value in the enumerable set self

function indexOf(EnumerableSet.Bytes32Set storage self, UD60x18 value) internal view returns (uint256);

length

Returns the number of elements in the enumerable set self

function length(EnumerableSet.Bytes32Set storage self) internal view returns (uint256);

add

Returns true if value is added to the enumerable set self

function add(EnumerableSet.Bytes32Set storage self, UD60x18 value) internal returns (bool);

remove

Returns true if value is removed from the enumerable set self

function remove(EnumerableSet.Bytes32Set storage self, UD60x18 value) internal returns (bool);

toArray

Returns an array of all elements in the enumerable set self

function toArray(EnumerableSet.Bytes32Set storage self) internal view returns (UD60x18[] memory);