use ;
/// Returns `true` if standard input is piped (non-interactive).
///
/// This distinguishes interactive terminal input from piped data (e.g. via `echo`, `cat`, etc).
///
/// Internally uses the [`atty`] crate to check the TTY status of `stdin`.
///
/// # Example:
/// ```bash
/// echo "Hello" | termcinema # → true
/// termcinema # → false
/// ```
pub