mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 00:09:51 +03:00
use r-values hasValue function
This commit is contained in:
@@ -50,11 +50,11 @@ class Helpers {
|
||||
static char * ultostr(char * ptr, uint32_t value, const uint8_t base);
|
||||
#endif
|
||||
|
||||
static bool hasValue(const uint8_t v, const uint8_t isBool = 0);
|
||||
static bool hasValue(const int8_t v);
|
||||
static bool hasValue(const int16_t v);
|
||||
static bool hasValue(const uint16_t v);
|
||||
static bool hasValue(const uint32_t v);
|
||||
static bool hasValue(const uint8_t &v, const uint8_t isBool = 0);
|
||||
static bool hasValue(const int8_t &v);
|
||||
static bool hasValue(const int16_t &v);
|
||||
static bool hasValue(const uint16_t &v);
|
||||
static bool hasValue(const uint32_t &v);
|
||||
|
||||
static std::string toLower(std::string const & s);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user