12 references to Tail
System.Private.CoreLib (12)
src\runtime\src\libraries\System.Private.CoreLib\src\System\String.Manipulation.cs (8)
2833public string TrimEnd() => TrimWhiteSpaceHelper(TrimType.Tail); 2836public unsafe string TrimEnd(char trimChar) => TrimHelper(&trimChar, 1, TrimType.Tail); 2869return TrimWhiteSpaceHelper(TrimType.Tail); 2873return TrimHelper(pTrimChars, trimChars.Length, TrimType.Tail); 2890return TrimWhiteSpaceHelper(TrimType.Tail); 2895return TrimHelper(pTrimChars, trimChars.Length, TrimType.Tail); 2918if ((trimType & TrimType.Tail) != 0) 2964if ((trimType & TrimType.Tail) != 0)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Ascii.Trimming.cs (3)
35public static Range TrimEnd(ReadOnlySpan<byte> value) => TrimHelper(value, TrimType.Tail); 38public static Range TrimEnd(ReadOnlySpan<char> value) => TrimHelper(value, TrimType.Tail); 68if ((trimType & TrimType.Tail) != 0)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\TrimType.cs (1)
25Both = Head | Tail