1
Fork 0

Trivial change to force a doc rebuild.

This commit is contained in:
Graydon Hoare 2012-04-13 19:50:51 -07:00
parent f099359cfa
commit d85e48840d

View file

@ -68,10 +68,10 @@ unsafe fn position<T>(buf: *T, f: fn(T) -> bool) -> uint {
#[inline(always)]
pure fn null<T>() -> *T unsafe { ret unsafe::reinterpret_cast(0u); }
#[doc = "Returns true if the pointer is equal to the null pointer"]
#[doc = "Returns true if the pointer is equal to the null pointer."]
pure fn is_null<T>(ptr: *const T) -> bool { ptr == null() }
#[doc = "Returns true if the pointer is not equal to the null pointer"]
#[doc = "Returns true if the pointer is not equal to the null pointer."]
pure fn is_not_null<T>(ptr: *const T) -> bool { !is_null(ptr) }
#[doc = "