コンストラクタで関数の引数に名前を付ける方法はありますか?F#コンストラクタの関数に名前付き引数を指定する方法はありますか?
type UnnamedInCtor(foo: string -> string -> bool) =
member this.Foo: string -> string -> bool = foo
member this.Bar: a:string -> b:string -> bool = foo
member this.Fizz = foo
//Does not compile
type NamedInCtor(foo: a:string -> b:string -> bool) =
member this.Foo: string -> string -> bool = foo
member this.Bar: a:string -> b:string -> bool = foo
member this.Fizz = foo
あなたがこれを確認しました。コンパイルされません。 –
もちろん私はしませんでした;) –