let myFunc x y =
List.fold (&&) true [func1 x y; func2 x y]
I don't know all the different operators and techniques in F#, but was hoping I could just plop some operator in place of "x y" for func1 and func2 to indicate to them "Just take my parameters" almost like how composition has implicit parameter pass through.
Alternatively, if someone can think of a much more straightforward and clean way of doing this that gets rid of the need for my function to hand it's parameters in, let me know.
Also, if this is just not possible which seems entirely likely, let me know.
Thanks!