Mercurial > hg > ishara
view arrows/@arrow/buffer.m @ 0:672052bd81f8
Initial partial import.
author | samer |
---|---|
date | Wed, 19 Dec 2012 22:38:28 +0000 |
parents | |
children |
line wrap: on
line source
% buffer - returns an arrow that collects several outputs from another arrow % % buffer :: % arrow({},{[[N]]},S) ~'arrow with no inputs and one output', % L:natural ~'width of buffer' % -> arrow({}, {[[N,L]]},S). function b=buffer(a,width), b=abuffer(a,width);