Mercurial > hg > ishara
view arrows/anull.m @ 27:5de03f77dae1
Added documentation about types and revised arrow type specifications.
author | samer |
---|---|
date | Sat, 19 Jan 2013 14:22:09 +0000 |
parents | 672052bd81f8 |
children | ae596261e75f |
line wrap: on
line source
% asink - Do nothing absorbing arrow % % asink :: N:natural -> arrow(_@typelist(N),{},empty). function a=asink(nin) if nargin<1, nin=1; end a=arr(@nop,'nargin',nin,'nargout',0); end