Function std::task::try

pub fn try<T: Send>(f: ~fn() -> T) -> Result<T, ()>

Execute a function in another task and return either the return value of the function or result::err.

This is equivalent to task().supervised().try.