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
I have a rare requirement to obtain the captures in strict order. This can be easily accomplished by replacing:
capture = new HashMap<>();
With
capture = new LinkedHashMap<>();
in Match.java
Match.java
Kindly consider including this in the next release.
The text was updated successfully, but these errors were encountered:
can you submit a PR with a test?
Sorry, something went wrong.
I'll see if I can get around to it this weekend.
Great! tag me in the PR and I'll test and review.
No branches or pull requests
I have a rare requirement to obtain the captures in strict order. This can be easily accomplished by replacing:
With
in
Match.java
Kindly consider including this in the next release.
The text was updated successfully, but these errors were encountered: