<div dir="ltr">Something like the code below - populate a list with partially applied functions, then use foldl to apply the functions in turn to the input list?<div><br></div><div><div>v :: Int -> [a] -> [a]</div><div>v = drop</div><div><br></div><div>w :: Int -> Int -> [a] -> [a]</div><div>w keep reject = (take keep).(drop reject)</div><div><br></div><div>-- Apply the list of functions (in turn) to the list, yielding a list</div><div>apply_ops :: [ [a] -> [a] ] -> [a] -> [a]</div><div>apply_ops fns l = foldl (flip ($)) l fns</div><div><br></div><div>-- Partially apply functions with non-list arguments to get list of functions of type [a] -> [a]</div><div>ops :: [ [a] -> [a] ]</div><div>ops = [v 3, w 2 1]</div><div><br></div><div>-- result = (w 2 1) ((v 3)[1,2,3,4,5,6,7,8])</div><div>--        = w [4,5,6,7,8]</div><div>--        = [5,6]</div><div>result :: [Int]</div><div>result = apply_ops ops [1,2,3,4,5,6,7,8]</div><div><br></div><div>main =</div><div>  do</div><div>    print result</div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On 17 December 2017 at 09:32, mike h <span dir="ltr"><<a href="mailto:mike_k_houghton@yahoo.co.uk" target="_blank">mike_k_houghton@yahoo.co.uk</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
I have a number of functions like these:<br>
<br>
v :: Int -> [a] -> [a]<br>
w :: Int -> Int -> [a] -> [a]<br>
x :: a -> a -> [a] -> [a]<br>
<br>
y :: a -> b ->…  <other args>... ->  [a] -> [a]<br>
z…<br>
etc.<br>
<br>
where there are any number of args of different types but the last two are common to all the functions i.e. they all have  [a] -> [a]<br>
<br>
What I’m trying to do is build a collection (ordered) of such functions and then apply each in turn to a [a] to get the final [a]. What would be the best approach to this?<br>
<br>
Thanks<br>
<br>
Mike<br>
______________________________<wbr>_________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@haskell.org">Beginners@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-<wbr>bin/mailman/listinfo/beginners</a><br>
</blockquote></div><br></div>