You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Meaning, having an extension method on Expr and Expr<T> which would produce strings in various formats: F# quotationed code, factory methods on Expr, perhaps others.
Can this be done in the existing library? It would mean either
extending all the writer/visitors with overloads for Expr, or
replacing the current overloads with some kind of adapter interface, which would have separate implementations for expression trees and code quotations.
Having a separate library would mean we couldn't reuse some of the existing writer/visitor functionality..
The text was updated successfully, but these errors were encountered:
https://docs.microsoft.com/en-us/dotnet/fsharp/language-reference/code-quotations
Meaning, having an extension method on
Expr
andExpr<T>
which would produce strings in various formats: F# quotationed code, factory methods onExpr
, perhaps others.Can this be done in the existing library? It would mean either
Expr
, orHaving a separate library would mean we couldn't reuse some of the existing writer/visitor functionality..
The text was updated successfully, but these errors were encountered: