12 references to Tail
System.Private.CoreLib (12)
src\libraries\System.Private.CoreLib\src\System\String.Manipulation.cs (8)
2424
public string TrimEnd() => TrimWhiteSpaceHelper(TrimType.
Tail
);
2427
public unsafe string TrimEnd(char trimChar) => TrimHelper(&trimChar, 1, TrimType.
Tail
);
2434
return TrimWhiteSpaceHelper(TrimType.
Tail
);
2438
return TrimHelper(pTrimChars, trimChars.Length, TrimType.
Tail
);
2455
return TrimWhiteSpaceHelper(TrimType.
Tail
);
2460
return TrimHelper(pTrimChars, trimChars.Length, TrimType.
Tail
);
2483
if ((trimType & TrimType.
Tail
) != 0)
2529
if ((trimType & TrimType.
Tail
) != 0)
src\libraries\System.Private.CoreLib\src\System\Text\Ascii.Trimming.cs (3)
35
public static Range TrimEnd(ReadOnlySpan<byte> value) => TrimHelper(value, TrimType.
Tail
);
38
public static Range TrimEnd(ReadOnlySpan<char> value) => TrimHelper(value, TrimType.
Tail
);
68
if ((trimType & TrimType.
Tail
) != 0)
src\libraries\System.Private.CoreLib\src\System\Text\TrimType.cs (1)
25
Both = Head |
Tail