12 references to Head
System.Private.CoreLib (12)
src\libraries\System.Private.CoreLib\src\System\String.Manipulation.cs (8)
2383
public string TrimStart() => TrimWhiteSpaceHelper(TrimType.
Head
);
2386
public unsafe string TrimStart(char trimChar) => TrimHelper(&trimChar, 1, TrimType.
Head
);
2393
return TrimWhiteSpaceHelper(TrimType.
Head
);
2397
return TrimHelper(pTrimChars, trimChars.Length, TrimType.
Head
);
2414
return TrimWhiteSpaceHelper(TrimType.
Head
);
2419
return TrimHelper(pTrimChars, trimChars.Length, TrimType.
Head
);
2472
if ((trimType & TrimType.
Head
) != 0)
2508
if ((trimType & TrimType.
Head
) != 0)
src\libraries\System.Private.CoreLib\src\System\Text\Ascii.Trimming.cs (3)
25
public static Range TrimStart(ReadOnlySpan<byte> value) => TrimHelper(value, TrimType.
Head
);
28
public static Range TrimStart(ReadOnlySpan<char> value) => TrimHelper(value, TrimType.
Head
);
55
if ((trimType & TrimType.
Head
) != 0)
src\libraries\System.Private.CoreLib\src\System\Text\TrimType.cs (1)
25
Both =
Head
| Tail