Closed
Description
local_data.rs line 55 declares this function unsafe:
pub unsafe fn local_data_get<T: Owned>(
but the docs for task_local_data doesn't show the unsafe keyword:
fn local_data_get<T: Owned>(key: LocalDataKey<T>) -> Option<@T>
Is this a rustdoc limitation?