// =============================================================================
// Copyright (c) 2025 - 2026 Haixing Hu.
//
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0.
// =============================================================================
//! Scalar comparison constraints.
use crateArgumentValue;
/// A comparison between an argument and a captured scalar value.
///
/// ```compile_fail
/// #![deny(unused_must_use)]
/// use qubit_argument::{ArgumentValue, ComparisonConstraint};
///
/// ComparisonConstraint::EqualTo(ArgumentValue::Signed(1));
/// ```