_Incrementable

protocol _Incrementable

This protocol is an implementation detail of Integer; do not use it directly.

Inheritance Equatable View Protocol Hierarchy →
Import import Swift

Instance Methods

func ==(_:rhs:) Required

Returns a Boolean value indicating whether two values are equal.

Equality is the inverse of inequality. For any values a and b, a == b implies that a != b is false.

Parameters: lhs: A value to compare. rhs: Another value to compare.

Declaration

func ==(lhs: Self, rhs: Self) -> Bool

Declared In

Equatable