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
Forgot to add them.
for d in dosage { let minimum_mass_string = d.min.to_string() + " mg"; let maximum_mass_string = d.max.to_string() + " mg"; let min_mass = Mass::from_str(&minimum_mass_string).unwrap(); let max_mass = Mass::from_str(&maximum_mass_string).unwrap(); if ingestion_mass >= min_mass && ingestion_mass <= max_mass { closest_dosage = Some(d); break; } }
The text was updated successfully, but these errors were encountered:
NEU-37 CLI: Add exceptions for theresholds and exceptional values
Sorry, something went wrong.
No branches or pull requests
Forgot to add them.
The text was updated successfully, but these errors were encountered: