match_each_dvector_mut

Macro match_each_dvector_mut 

Source
macro_rules! match_each_dvector_mut {
    ($self:expr, | $vec:ident | $body:block) => { ... };
}
Expand description

Matches on all decimal type variants of DecimalVectorMut and executes the same code for each variant branch.

This macro eliminates repetitive match statements when implementing mutable operations that need to work uniformly across all decimal type variants (D8, D16, D32, D64, D128, D256).