You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
It might be useful to use option methods such as isNone or isSome inside kernels since option types are supported.
Additional context
Use case example
letone=<@fun(x: float32 option)(_: int option)->let mutableres=0match x with| Some _-> res <-1| None ->()if res =0then None else Some res @>letone=<@fun(x: float32 option)(_: int option)->if x.IsNone then None else Some 1@>
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
It might be useful to use option methods such as
isNone
orisSome
inside kernels since option types are supported.Additional context
Use case example
The text was updated successfully, but these errors were encountered: