| 76 inline METHOD is_empty() const -> bool; |
76 inline METHOD is_empty() const -> bool; |
| 77 METHOD is_numeric() const -> bool; |
77 METHOD is_numeric() const -> bool; |
| 78 METHOD find_last (const char* c, int a = -1) const -> int; |
78 METHOD find_last (const char* c, int a = -1) const -> int; |
| 79 inline METHOD length() const -> int; |
79 inline METHOD length() const -> int; |
| 80 METHOD mask_against (const String& pattern) const -> bool; |
80 METHOD mask_against (const String& pattern) const -> bool; |
| |
81 METHOD md5() const -> String; |
| 81 METHOD mid (long a, long b = -1) const -> String; |
82 METHOD mid (long a, long b = -1) const -> String; |
| 82 inline METHOD modify_index (int& a) -> void; |
83 inline METHOD modify_index (int& a) -> void; |
| 83 inline METHOD prepend (String a) -> void; |
84 inline METHOD prepend (String a) -> void; |
| 84 inline METHOD remove (int pos) -> void; |
85 inline METHOD remove (int pos) -> void; |
| 85 inline METHOD remove (int pos, int len) -> void; |
86 inline METHOD remove (int pos, int len) -> void; |