|
uint32_t | length () const |
|
uint32_t | size () const |
|
flash_string_t | data () const |
|
bool | isEqual (const char *cstr) const |
| Check for equality with a C-string. More...
|
|
bool | isEqual (const FlashString &str) const |
| Check for equality with another FlashString. More...
|
|
bool | isEqual (const String &str) const |
|
bool | operator== (const char *str) const |
|
bool | operator== (const FlashString &str) const |
|
bool | operator== (const String &str) const |
|
bool | operator!= (const char *str) const |
|
bool | operator!= (const FlashString &str) const |
|
bool | operator!= (const String &str) const |
|
describes a counted string stored in flash memory
- Note
- because the string length is stored there is no need to call strlen_P before reading the content into RAM. Data is stored word-aligned so it can be read as efficiently as possible.