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
Be able to search string and bytes values without loading the values into the guest.
The addition of host functions:
bytes_first_index
bytes_last_index
string_first_index
string_last_index
Load the values into the guest and do the searches guest side.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What problem does your feature solve?
Be able to search string and bytes values without loading the values into the guest.
What would you like to see?
The addition of host functions:
bytes_first_index
– Given a bytes, and a search bytes, return the first index of where the search bytes begins or void.bytes_last_index
– Given a bytes, and a search bytes, return the last index of where the search bytes begins or void.string_first_index
– Given a string, and a search string, return the first index of where the search string begins or void.string_last_index
– Given a string, and a search string, return the last index of where the search string begins or void.What alternatives are there?
Load the values into the guest and do the searches guest side.
The text was updated successfully, but these errors were encountered: