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
int-to-ascii
int-to-utf8
Here are some tests that show the failures of those functions:
#[test] fn int_to_ascii_oom() { crosscheck_oom( "(int-to-ascii 42)", Ok(Some( Value::string_ascii_from_bytes(b"42".to_vec()).unwrap(), )), ); } #[test] fn int_to_utf8_oom() { crosscheck_oom( "(int-to-utf8 42)", Ok(Some(Value::string_utf8_from_bytes(b"42".to_vec()).unwrap())), ); }
(These tests will exists after the merging of #586)
The text was updated successfully, but these errors were encountered:
string-to-ascii
string-to-utf8
BowTiedWoo
Successfully merging a pull request may close this issue.
Here are some tests that show the failures of those functions:
(These tests will exists after the merging of #586)
The text was updated successfully, but these errors were encountered: