You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The recommended way to use pom (per your examples) is parsing 'u8's. If pom fails to match, it gives messages like: Err(Mismatch { message: "expect: 120, found: 101", position: 1 })
Here "120" is ascii "x" and "101" is ascii "e".
Since usually pom will be interpreting text, it would make sense to convert these values to characters if they happen to match printable ASCII.
Did I miss a feature that can do this already?
The text was updated successfully, but these errors were encountered:
The recommended way to use pom (per your examples) is parsing 'u8's. If pom fails to match, it gives messages like:
Err(Mismatch { message: "expect: 120, found: 101", position: 1 })
Here "120" is ascii "x" and "101" is ascii "e".
Since usually pom will be interpreting text, it would make sense to convert these values to characters if they happen to match printable ASCII.
Did I miss a feature that can do this already?
The text was updated successfully, but these errors were encountered: