view general/funutils/@function_handle/foldr.m @ 53:3ba80c9914ff

Minor doc fix, added .class to .hgignore
author samer
date Mon, 02 Feb 2015 10:47:55 +0000
parents 03694e5c8365
children
line wrap: on
line source
function X=foldr(fn,e,args)
% foldr - Fold from the right combinator 
%
% foldr :: (Y,X->X),	Y, cells(Y) -> Y.
%
% This function applies an associative operator to a list of arguments,
% starting from the right, eg
% elements, eg foldr(@plus,0,{1,2,3,4}) = (1+(2+(3+(4+0)))).
X=e; for i=length(args):-1:1, X=fn(args{i},X); end