1

再作成せずに一致するパターンから Option 値を渡す方法があるかどうか疑問に思っていますか?

var funA x = Some(x)
var funB x = 
   match funA x with
   | Option(y) -> Option(y) // <---- Recreating the Option value. Can I return the very same one?
   | _ -> failwith "Whatever"
4

1 に答える 1