diff options
Diffstat (limited to 'Source/Kernel/Library/String.class.cpp')
-rw-r--r-- | Source/Kernel/Library/String.class.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Source/Kernel/Library/String.class.cpp b/Source/Kernel/Library/String.class.cpp index e43953f..4e72540 100644 --- a/Source/Kernel/Library/String.class.cpp +++ b/Source/Kernel/Library/String.class.cpp @@ -117,7 +117,6 @@ String& String::append (const char* other, u8int encoding) { m_string[m_length] = 0; return *this; } - String String::concat (const String &other) const { //Can be optimized String ret(*this); return (ret += other); @@ -175,24 +174,6 @@ u64int String::toInt16() const { return number; } -WChar& String::operator[] (int index) const { - return m_string[index]; -} - -u32int String::size() const { - return m_length; -} - -void String::clear() { - delete [] m_string; - m_length = 0; - m_string = 0; -} - -bool String::empty() const { - return (m_length == 0); -} - Vector<String> String::split(WChar c) const { Vector<String> ret; ret.push(String("")); |