The following code does not compile.
type A(?arg) =
member __.Arg : string option = arg
type B(?arg) =
inherit A(arg) //ERROR expected type string but has type 'a option
I assume this is because an instance of the underlying type of the option must be provided, and the compiler handles passing Some
/None
based on syntax.
Assuming my assumption has been correctly assumed, is there a workaround for this? Is it possible to propagate optional arguments?
F# spec 8.13.5 Optional arguments to method members
Callers may specify values for optional arguments by using the following techniques:
By using normal, unnamed arguments matched by position.
type A(?arg) =
member __.Arg : string option = arg
type B(?arg) =
inherit A(?arg = arg)
printfn "1. %A" (B()).Arg // None
printfn "2. %A" (B("1")).Arg // Some "1"
printfn "3. %A" (A()).Arg // None
printfn "4. %A" (A("1")).Arg // Some "1"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With