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