optic
This commit is contained in:
parent
f9001e59de
commit
d4df6b700a
|
@ -113,25 +113,25 @@ class FString
|
||||||
const char* c_str() const;
|
const char* c_str() const;
|
||||||
const std::string toString() const;
|
const std::string toString() const;
|
||||||
|
|
||||||
FString toLower() const;
|
FString toLower() const;
|
||||||
FString toUpper() const;
|
FString toUpper() const;
|
||||||
|
|
||||||
sInt16 toShort() const;
|
sInt16 toShort() const;
|
||||||
uInt16 toUShort() const;
|
uInt16 toUShort() const;
|
||||||
int toInt() const;
|
int toInt() const;
|
||||||
uInt toUInt() const;
|
uInt toUInt() const;
|
||||||
long toLong() const;
|
long toLong() const;
|
||||||
uLong toULong() const;
|
uLong toULong() const;
|
||||||
float toFloat() const;
|
float toFloat() const;
|
||||||
double toDouble() const;
|
double toDouble() const;
|
||||||
|
|
||||||
FString ltrim() const;
|
FString ltrim() const;
|
||||||
FString rtrim() const;
|
FString rtrim() const;
|
||||||
FString trim() const;
|
FString trim() const;
|
||||||
|
|
||||||
FString left(uInt) const;
|
FString left(uInt) const;
|
||||||
FString right(uInt) const;
|
FString right(uInt) const;
|
||||||
FString mid(uInt, uInt) const;
|
FString mid(uInt, uInt) const;
|
||||||
|
|
||||||
std::vector<FString> split (const FString&);
|
std::vector<FString> split (const FString&);
|
||||||
std::vector<FString> split (std::wstring&);
|
std::vector<FString> split (std::wstring&);
|
||||||
|
|
Loading…
Reference in New Issue