hashCode property

  1. @override
int get hashCode
override

Calculates the hash code for the Edwards curve point.

This method calculates a hash code for the Edwards curve point based on its x and y coordinates, as well as the order of the point.

Returns:

  • An integer representing the hash code of the Edwards curve point.

Implementation

@override
int get hashCode => x.hashCode ^ y.hashCode ^ order.hashCode;