core: Add extension methods for is_null, is_not_null
This commit is contained in:
@@ -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};
|
||||
|
||||
Reference in New Issue
Block a user