is_main_thread 0.1.0

A simply tool to check if current thread is the main one.
Documentation
1
2
3
4
5
#![cfg(target_os = "macos")]

pub fn is_main_thread() -> Option<bool> {
    Some(msg_send![class!(NSThread), isMainThread])
}