view sequences/lazy_cons.m @ 53:3ba80c9914ff

Minor doc fix, added .class to .hgignore
author samer
date Mon, 02 Feb 2015 10:47:55 +0000
parents 3f77126f7b5f
children
line wrap: on
line source
% lazy_cons - Make sequence given head and tail
%
% lazy_cons :: A, (void -> seq(A)) -> seq(A).
function Y=lazy_cons(X,Z), Y=seq.lcons(X,Z); end