``` A ::= B as b C as c ``` We could create a type `A` to perform capturing: ```fsharp type A = { mutable b : B option mutable c : C option } ``` This might be much more efficient than current implementation.
We could create a type
Ato perform capturing:This might be much more efficient than current implementation.