use Write;
use crate::;
/// A pattern that writes the current thread's ID into the output. Example:
/// `3132`.
///
/// # Implementation
///
/// On Linux, this pattern writes the return value of `gettid` to the output.
///
/// On macOS and iOS, this pattern writes the return value of
/// `pthread_threadid_np` to the output.
///
/// On Windows, this pattern writes the return value of `GetCurrentThreadId` to
/// the output.
;