//! LZMA match finder stub.
//!
//! The match finder scans the input for the longest match in the dictionary
//! and returns a (length, distance) pair for the encoder to emit.
use crate;
/// Find the longest match for the byte at `pos` in `input`.
///
/// # Errors
/// Always returns [`LazippyError::NotYetImplemented`] until the match finder lands.