The hash value.
SDK
- Xcode 11.0+
Framework
- Swift Standard Library
Declaration
var hashValue: Int { get }
Available when ChangeElement conforms to Hashable.
Discussion
Hash values are not guaranteed to be equal across different executions of your program. Do not save hash values to use during a future execution.
Important
hash is deprecated as a Hashable requirement. To conform to Hashable, implement the hash(into:) requirement instead.
Note
This documentation comment was inherited from Hashable.