diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-04-15 21:46:29 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-04-15 21:46:29 -0700 |
| commit | 7a2d7aa5dee7832a9afc9ba18c8ffc3622e3c00c (patch) | |
| tree | d1886afb17b1697b98c520df15b3d6ce5f35fb08 /src/libcore/ptr.rs | |
| parent | 0f65872438bf7a797094ef358e37c0b32c210bd8 (diff) | |
core: Add extension methods for is_null, is_not_null
Diffstat (limited to 'src/libcore/ptr.rs')
| -rw-r--r-- | src/libcore/ptr.rs | 10 |
1 files changed, 10 insertions, 0 deletions
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<T>(dst: *T, src: *T, count: uint) { libc_::memmove(dst as *c_void, src as *c_void, n); } +#[doc = "Extension methods for pointers"] +impl extensions<T> for *T { + #[doc = "Returns true if the pointer is equal to the null pointer."] + pure fn is_null<T>() -> bool { is_null(self) } + + #[doc = "Returns true if the pointer is not equal to the null pointer."] + pure fn is_not_null<T>() -> bool { is_not_null(self) } +} + #[test] fn test() unsafe { type pair = {mut fst: int, mut snd: int}; |
