From 7a2d7aa5dee7832a9afc9ba18c8ffc3622e3c00c Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Sun, 15 Apr 2012 21:46:29 -0700 Subject: [PATCH] core: Add extension methods for is_null, is_not_null --- src/libcore/core.rs | 1 + src/libcore/ptr.rs | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/src/libcore/core.rs b/src/libcore/core.rs index 39781df0ef0..d359cbf083d 100644 --- a/src/libcore/core.rs +++ b/src/libcore/core.rs @@ -8,6 +8,7 @@ import path = path::path; import str::extensions; import vec::extensions; import option::extensions; +import ptr::extensions; export path, option, some, none, unreachable; export extensions; diff --git a/src/libcore/ptr.rs b/src/libcore/ptr.rs index be74dfad32e..7df8499e2b5 100644 --- a/src/libcore/ptr.rs +++ b/src/libcore/ptr.rs @@ -11,6 +11,7 @@ export memcpy; export memmove; export buf_len; export position; +export extensions; import libc::c_void; @@ -100,6 +101,15 @@ unsafe fn memmove(dst: *T, src: *T, count: uint) { libc_::memmove(dst as *c_void, src as *c_void, n); } +#[doc = "Extension methods for pointers"] +impl extensions for *T { + #[doc = "Returns true if the pointer is equal to the null pointer."] + pure fn is_null() -> bool { is_null(self) } + + #[doc = "Returns true if the pointer is not equal to the null pointer."] + pure fn is_not_null() -> bool { is_not_null(self) } +} + #[test] fn test() unsafe { type pair = {mut fst: int, mut snd: int};