File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -505,13 +505,18 @@ pub unsafe fn drop_in_place<T: ?Sized>(to_drop: *mut T) {
505
505
506
506
/// Creates a null raw pointer.
507
507
///
508
+ /// This function is equivalent to zero-initializing the pointer:
509
+ /// `MaybeUninit::<*const T>::zeroed().assume_init()`.
510
+ /// The resulting pointer has the address 0.
511
+ ///
508
512
/// # Examples
509
513
///
510
514
/// ```
511
515
/// use std::ptr;
512
516
///
513
517
/// let p: *const i32 = ptr::null();
514
518
/// assert!(p.is_null());
519
+ /// assert_eq!(p as usize, 0); // this pointer has the address 0
515
520
/// ```
516
521
#[ inline( always) ]
517
522
#[ must_use]
@@ -526,13 +531,18 @@ pub const fn null<T: ?Sized + Thin>() -> *const T {
526
531
527
532
/// Creates a null mutable raw pointer.
528
533
///
534
+ /// This function is equivalent to zero-initializing the pointer:
535
+ /// `MaybeUninit::<*mut T>::zeroed().assume_init()`.
536
+ /// The resulting pointer has the address 0.
537
+ ///
529
538
/// # Examples
530
539
///
531
540
/// ```
532
541
/// use std::ptr;
533
542
///
534
543
/// let p: *mut i32 = ptr::null_mut();
535
544
/// assert!(p.is_null());
545
+ /// assert_eq!(p as usize, 0); // this pointer has the address 0
536
546
/// ```
537
547
#[ inline( always) ]
538
548
#[ must_use]
You can’t perform that action at this time.
0 commit comments