We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2db0de commit 8358a15Copy full SHA for 8358a15
1 file changed
src/GraphBLAS-sharp.Backend/Quotes/Arithmetic.fs
@@ -1,4 +1,4 @@
1
-namespace GraphBLAS.FSharp.Backend.Quotes
+namespace GraphBLAS.FSharp.Backend.Quotes
2
3
open GraphBLAS.FSharp.Backend.Objects
4
@@ -229,15 +229,14 @@ module ArithmeticOperations =
229
230
let float32Mul = createPair 0.0f (*) <@ (*) @>
231
232
- // other
+ // other operations
233
let less<'a when 'a: comparison> =
234
<@ fun (x: 'a option) (y: 'a option) ->
235
match x, y with
236
| Some x, Some y -> if (x < y) then Some 1 else None
237
| Some x, None -> Some 1
238
| _ -> None @>
239
240
- //TODO: noneValue
241
let min<'a when 'a: comparison> =
242
243
0 commit comments