We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f118659 commit a0c25a4Copy full SHA for a0c25a4
1 file changed
src/GraphBLAS-sharp.Backend/Common/StandardOperations.fs
@@ -135,3 +135,9 @@ module StandardOperations =
135
match left, right with
136
| _, Some _ -> left
137
| _ -> None @>
138
+
139
+ let complementedMaskOp<'a, 'b when 'a: struct and 'b: struct> =
140
+ <@ fun (left: 'a option) (right: 'b option) ->
141
+ match left, right with
142
+ | _, None -> left
143
+ | _ -> None @>
0 commit comments