- WiFiClient & operator=(const WiFiClient &other);
- bool operator==(const bool value)
- {
- return bool() == value;
- }
- bool operator!=(const bool value)
- {
- return bool() != value;
- }
- bool operator==(const WiFiClient&);
- bool operator!=(const WiFiClient& rhs)
- {
- return !this->operator==(rhs);
- };