mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
added remnant
This commit is contained in:
parent
07daddb3f3
commit
8a283fea75
1 changed files with 8 additions and 0 deletions
|
@ -3113,6 +3113,14 @@ namespace System
|
|||
return mMatchPos < mStrLen && (!mSplitOptions.HasFlag(StringSplitOptions.RemoveEmptyEntries) || mStrLen != 0);
|
||||
}
|
||||
}
|
||||
|
||||
public StringView Remnant
|
||||
{
|
||||
get
|
||||
{
|
||||
return .(mPtr + mMatchPos + 1, mStrLen - mMatchPos);
|
||||
}
|
||||
}
|
||||
|
||||
public bool MoveNext() mut
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue