Why is t.b evaluated on every call? And is there any way how to make it evaluate only once?
type test =
{ a: float }
member x.b =
printfn "oh no"
x.a * 2.
let t = { a = 1. }
t.b
t.b
|
|
|
It's a property; you're basically calling the If you want the effect to happen once with the constructor, you could use a class:
|
|||||||||
|
|
An alternative version of Brian's answer that will evaluate
|
|||
|
|
|
In response to your comments in Brian's post, you can fake copy-and-update record expressions using optional/named args. For example:
|
|||
|
|