1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

added remnant

This commit is contained in:
Booklordofthedings 2023-11-27 17:02:48 +01:00
parent 07daddb3f3
commit 8a283fea75

View file

@ -3113,6 +3113,14 @@ namespace System
return mMatchPos < mStrLen && (!mSplitOptions.HasFlag(StringSplitOptions.RemoveEmptyEntries) || mStrLen != 0); return mMatchPos < mStrLen && (!mSplitOptions.HasFlag(StringSplitOptions.RemoveEmptyEntries) || mStrLen != 0);
} }
} }
public StringView Remnant
{
get
{
return .(mPtr + mMatchPos + 1, mStrLen - mMatchPos);
}
}
public bool MoveNext() mut public bool MoveNext() mut
{ {