class Eth::Abi::Type

def ==(another_type)

Returns:
  • (Boolean) - true if all attributes match.

Parameters:
  • another_type (Eth::Abi::Type) -- another type to be compared.
def ==(another_type)
  base_type == another_type.base_type and
    sub_type == another_type.sub_type and
    dimensions == another_type.dimensions
end