System.Text Namespace

Classes

public class CodeFormatter

Functions

public nothrow String<char> CharStr(char c)
public String<uchar> CharStr(uchar c)
public String<wchar> CharStr(wchar c)
public nothrow String<char> Format(const String<char>& s, int width)
public nothrow String<char> Format(const String<char>& s, int width, FormatJustify justify)
public nothrow String<char> Format(const String<char>& s, int width, FormatWidth fw)
public nothrow String<char> Format(const String<char>& s, int width, FormatWidth fw, FormatJustify justify)
public nothrow String<char> Format(const String<char>& s, int width, FormatWidth fw, FormatJustify justify, char fillChar)
public nothrow String<uchar> Format(const String<uchar>& s, int width)
public nothrow String<uchar> Format(const String<uchar>& s, int width, FormatJustify justify)
public nothrow String<uchar> Format(const String<uchar>& s, int width, FormatWidth fw)
public nothrow String<uchar> Format(const String<uchar>& s, int width, FormatWidth fw, FormatJustify justify)
public nothrow String<uchar> Format(const String<uchar>& s, int width, FormatWidth fw, FormatJustify justify, char fillChar)
public nothrow String<char> HexEscape(char c)
public nothrow String<char> HexEscape(uchar c)
public nothrow String<char> HexEscape(wchar c)
public nothrow String<char> MakeCharLiteral(char c)
public nothrow String<char> MakeStringLiteral(const String<char>& s)
public String<uchar> MakeStringLiteral(const String<uchar>& s)
public nothrow String<char> StringStr(const String<char>& s)
public String<uchar> StringStr(const String<uchar>& s)
public nothrow String<char> Trim(const String<char>& s)
public String<uchar> Trim(const String<uchar>& s)
public String<wchar> Trim(const String<wchar>& s)
public String<char> TrimAll(const String<char>& s)
public String<uchar> TrimAll(const String<uchar>& s)
public String<wchar> TrimAll(const String<wchar>& s)
public CodeFormatter& operator<<(CodeFormatter& formatter, char c)
public CodeFormatter& operator<<(CodeFormatter& formatter, const Endl&)
public CodeFormatter& operator<<(CodeFormatter& formatter, const String<char>& s)
public CodeFormatter& operator<<(CodeFormatter& formatter, const char* s)
public CodeFormatter& operator<<(CodeFormatter& formatter, long x)
public CodeFormatter& operator<<(CodeFormatter& formatter, uchar c)
public CodeFormatter& operator<<(CodeFormatter& formatter, ulong x)
public CodeFormatter& operator<<(CodeFormatter& formatter, wchar c)

Enumerated Types

public enum FormatJustify
public enum FormatWidth

Function Details

CharStr Function

public nothrow String<char> CharStr(char c)

Definition
Line 155 of System.Base/TextUtil.cm


CharStr Function

public String<uchar> CharStr(uchar c)

Definition
Line 225 of System.Base/TextUtil.cm


CharStr Function

public String<wchar> CharStr(wchar c)

Definition
Line 195 of System.Base/TextUtil.cm


Format Function

public nothrow String<char> Format(const String<char>& s, int width)

Definition
Line 315 of System.Base/TextUtil.cm


Format Function

public nothrow String<char> Format(const String<char>& s, int width, FormatJustify justify)

Definition
Line 320 of System.Base/TextUtil.cm


Format Function

public nothrow String<char> Format(const String<char>& s, int width, FormatWidth fw)

Definition
Line 325 of System.Base/TextUtil.cm


Format Function

public nothrow String<char> Format(const String<char>& s, int width, FormatWidth fw, FormatJustify justify)

Definition
Line 330 of System.Base/TextUtil.cm


Format Function

public nothrow String<char> Format(const String<char>& s, int width, FormatWidth fw, FormatJustify justify, char fillChar)

Definition
Line 335 of System.Base/TextUtil.cm


Format Function

public nothrow String<uchar> Format(const String<uchar>& s, int width)

Definition
Line 355 of System.Base/TextUtil.cm


Format Function

public nothrow String<uchar> Format(const String<uchar>& s, int width, FormatJustify justify)

Definition
Line 360 of System.Base/TextUtil.cm


Format Function

public nothrow String<uchar> Format(const String<uchar>& s, int width, FormatWidth fw)

Definition
Line 365 of System.Base/TextUtil.cm


Format Function

public nothrow String<uchar> Format(const String<uchar>& s, int width, FormatWidth fw, FormatJustify justify)

Definition
Line 370 of System.Base/TextUtil.cm


Format Function

public nothrow String<uchar> Format(const String<uchar>& s, int width, FormatWidth fw, FormatJustify justify, char fillChar)

Definition
Line 375 of System.Base/TextUtil.cm


HexEscape Function

public nothrow String<char> HexEscape(char c)

Definition
Line 140 of System.Base/TextUtil.cm


HexEscape Function

public nothrow String<char> HexEscape(uchar c)

Definition
Line 150 of System.Base/TextUtil.cm


HexEscape Function

public nothrow String<char> HexEscape(wchar c)

Definition
Line 145 of System.Base/TextUtil.cm


MakeCharLiteral Function

public nothrow String<char> MakeCharLiteral(char c)

Definition
Line 185 of System.Base/TextUtil.cm


MakeStringLiteral Function

public nothrow String<char> MakeStringLiteral(const String<char>& s)

Definition
Line 289 of System.Base/TextUtil.cm


MakeStringLiteral Function

public String<uchar> MakeStringLiteral(const String<uchar>& s)

Definition
Line 297 of System.Base/TextUtil.cm


StringStr Function

public nothrow String<char> StringStr(const String<char>& s)

Definition
Line 255 of System.Base/TextUtil.cm


StringStr Function

public String<uchar> StringStr(const String<uchar>& s)

Definition
Line 272 of System.Base/TextUtil.cm


Trim Function

public nothrow String<char> Trim(const String<char>& s)

Definition
Line 10 of System.Base/TextUtil.cm


Trim Function

public String<uchar> Trim(const String<uchar>& s)

Definition
Line 30 of System.Base/TextUtil.cm


Trim Function

public String<wchar> Trim(const String<wchar>& s)

Definition
Line 25 of System.Base/TextUtil.cm


TrimAll Function

public String<char> TrimAll(const String<char>& s)

Definition
Line 45 of System.Base/TextUtil.cm


TrimAll Function

public String<uchar> TrimAll(const String<uchar>& s)

Definition
Line 95 of System.Base/TextUtil.cm


TrimAll Function

public String<wchar> TrimAll(const String<wchar>& s)

Definition
Line 90 of System.Base/TextUtil.cm


operator<< Function

public CodeFormatter& operator<<(CodeFormatter& formatter, char c)

Definition
Line 159 of System.Base/CodeFormatter.cm


operator<< Function

public CodeFormatter& operator<<(CodeFormatter& formatter, const Endl&)

Definition
Line 180 of System.Base/CodeFormatter.cm


operator<< Function

public CodeFormatter& operator<<(CodeFormatter& formatter, const String<char>& s)

Definition
Line 139 of System.Base/CodeFormatter.cm


operator<< Function

public CodeFormatter& operator<<(CodeFormatter& formatter, const char* s)

Definition
Line 133 of System.Base/CodeFormatter.cm


operator<< Function

public CodeFormatter& operator<<(CodeFormatter& formatter, long x)

Definition
Line 145 of System.Base/CodeFormatter.cm


operator<< Function

public CodeFormatter& operator<<(CodeFormatter& formatter, uchar c)

Definition
Line 173 of System.Base/CodeFormatter.cm


operator<< Function

public CodeFormatter& operator<<(CodeFormatter& formatter, ulong x)

Definition
Line 152 of System.Base/CodeFormatter.cm


operator<< Function

public CodeFormatter& operator<<(CodeFormatter& formatter, wchar c)

Definition
Line 166 of System.Base/CodeFormatter.cm