Skip to content

Commit bfa36cd

Browse files
committed
Add size_of and size_of_val to the prelude
Many, many projects use `size_of` to get the size of a type. However, it's also often equally easy to hardcode a size (e.g. `8` instead of `size_of::<u64>()`). Minimizing friction in the use of `size_of` helps ensure that people use it and make code more self-documenting. The name `size_of` is unambiguous: the name alone, without any prefix or path, is self-explanatory and unmistakeable for any other functionality. Adding it to the prelude cannot produce any name conflicts, as any local definition will silently shadow the one from the prelude. Thus, we don't need to wait for a new edition prelude to add it.
1 parent 4ea92e3 commit bfa36cd

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

library/std/src/prelude/common.rs

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ pub use crate::ops::{Drop, Fn, FnMut, FnOnce};
1414
#[stable(feature = "rust1", since = "1.0.0")]
1515
#[doc(no_inline)]
1616
pub use crate::mem::drop;
17+
#[stable(feature = "size_of_prelude", since = "CURRENT_RUSTC_VERSION")]
18+
#[doc(no_inline)]
19+
pub use crate::mem::{size_of, size_of_val};
1720

1821
// Re-exported types and traits
1922
#[stable(feature = "rust1", since = "1.0.0")]

library/std/src/prelude/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@
3636
//! operations for both destructors and overloading `()`.
3737
//! * <code>[std::mem]::[drop]</code>, a convenience function for explicitly
3838
//! dropping a value.
39+
//! * <code>[std::mem]::{[size_of], [size_of_val]}</code>, to get the size of
40+
//! a type or value.
3941
//! * <code>[std::boxed]::[Box]</code>, a way to allocate values on the heap.
4042
//! * <code>[std::borrow]::[ToOwned]</code>, the conversion trait that defines
4143
//! [`to_owned`], the generic method for creating an owned type from a

0 commit comments

Comments
 (0)