12 references to Head
System.Private.CoreLib (12)
src\runtime\src\libraries\System.Private.CoreLib\src\System\String.Manipulation.cs (8)
2768public string TrimStart() => TrimWhiteSpaceHelper(TrimType.Head); 2771public unsafe string TrimStart(char trimChar) => TrimHelper(&trimChar, 1, TrimType.Head); 2804return TrimWhiteSpaceHelper(TrimType.Head); 2808return TrimHelper(pTrimChars, trimChars.Length, TrimType.Head); 2825return TrimWhiteSpaceHelper(TrimType.Head); 2830return TrimHelper(pTrimChars, trimChars.Length, TrimType.Head); 2909if ((trimType & TrimType.Head) != 0) 2945if ((trimType & TrimType.Head) != 0)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Ascii.Trimming.cs (3)
25public static Range TrimStart(ReadOnlySpan<byte> value) => TrimHelper(value, TrimType.Head); 28public static Range TrimStart(ReadOnlySpan<char> value) => TrimHelper(value, TrimType.Head); 55if ((trimType & TrimType.Head) != 0)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\TrimType.cs (1)
25Both = Head | Tail