F# code quotation invocation, performance, and run-time requirements
问题 Here are 4 deeply related questions about F# code quotations - How do I invoke an F# code quotation? Will it be invoked in a manner less efficient than if it were just a plain old F# lambda? to what degree? Will it require run-time support for advanced reflection or code-emitting functionality (which is often absent or prohibited from embedded platforms I am targeting)? 回答1: Quotations are just data, so you can potentially "invoke" them in whatever clever way you come up with. For instance,