We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In PatternScanResult.cs#L35 the Offset is added to the return value, but the current value is never updated in the struct.
According to the summary
Appends to the existing offset if the offset is valid.
Instead, a new instance is returned with the added offset but doesn't update the existing struct the method is a part of.
The text was updated successfully, but these errors were encountered:
The quality of life case is that
somePattern = somePattern.AddOffset(offset);
is more tedious than
somePattern.AddOffset(offset);
Sorry, something went wrong.
No branches or pull requests
In PatternScanResult.cs#L35 the Offset is added to the return value, but the current value is never updated in the struct.
According to the summary
Instead, a new instance is returned with the added offset but doesn't update the existing struct the method is a part of.
The text was updated successfully, but these errors were encountered: