Function tear::util::gut[][src]

pub fn gut<T>(_: T) -> Maru

Always returns Maru

This function is used with terror! to return None, where you would use .ok()?.unwrap() instead.

fn f () -> Option<i32> {
	terror! { None => tear::gut }
	Some(1)
}