Function konst::ptr::is_null

source ·
pub const fn is_null<T: ?Sized>(ptr: *const T) -> bool
Expand description

Const equivalent of <*const T>::is_null

§Example

use konst::ptr;

use core::ptr::null;

const NULL_IS_NULL: bool = ptr::is_null(null::<u8>());
const REFF_IS_NULL: bool = ptr::is_null(&100);

assert_eq!(NULL_IS_NULL, true);
assert_eq!(REFF_IS_NULL, false);