1function C = GB_spec_accum_mask (C, Mask, accum, T, C_replace, ...
2    Mask_complement, identity)
3%GB_SPEC_ACCUM_MASK apply the accumulator and mask
4%
5% C<Mask> = accum (C,T): apply the accum, then mask, and return the result
6
7% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
8% SPDX-License-Identifier: Apache-2.0
9
10[Z simple] = GB_spec_accum (accum, C, T, identity) ;
11C = GB_spec_mask (C, Mask, Z, C_replace, Mask_complement, identity) ;
12
13