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
Hi, This is a snippet of code adopted from lib.rs:
lib.rs
mod plot; mod slope_icon; mod super_title_params; mod surface; mod surface_geometry; mod text; pub use crate::as_matrix::*; pub use crate::as_vector::*; pub use crate::auxiliary::*; pub use crate::barplot::*; pub use crate::boxplot::*; pub use crate::canvas::*;
what's the difference between pub use crate::as_matrix::*; and pub use as_matrix::*; here ? Can the crate be omitted ?
pub use crate::as_matrix::*;
pub use as_matrix::*;
crate
The text was updated successfully, but these errors were encountered:
You're right; we don't need the word crate here. I guess I left the word crate when I was learning Rust. I've simplified these statements in #92
Sorry, something went wrong.
No branches or pull requests
Hi,
This is a snippet of code adopted from
lib.rs
:what's the difference between
pub use crate::as_matrix::*;
andpub use as_matrix::*;
here ? Can thecrate
be omitted ?The text was updated successfully, but these errors were encountered: