bool operator>=(const ElementType &e1, const KeyType &key);
I am trying to overload >= which compares the a string in struct e1 with a string. When I compile I get an error that:
'bool operator>=(const ElementType &e1, const KeyType &key);' must take exactly one argument
...I understand that the error is probably from trying to compare a struct element with a string, but i do not know how to fix it.