view arrows/anull.m @ 42:ae596261e75f

Various fixes and development to audio handling
author samer
date Tue, 02 Dec 2014 14:51:13 +0000
parents 5de03f77dae1
children
line wrap: on
line source
% anull - arrow to absorb given number of inputs
%
% 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