Fabulous.AST
Fabulous.AST copied to clipboard
Expose the APIs using `seq` instead of `list`
Hello,
This issue is more of an idea / reflection.
In the project, I am working on we are using reflection to generate code using Fabulous.AST.
Most of F# reflection APIs returns array and not list.
This leads to needing to write Seq.toList, Array.toList, etc. a lot of times to match Fabulous.AST APIs which expect list.
Do you think it would make sense to make Fabulous.AST expose the APIs using seq instead so it would be compatible with list, array, seq, etc. out of the box?
Yeah I think it makes sense. Im planning to make some breaking changes in the InterpolatedStringExpr so it might be a good moment to also change this.