view arrows/anull.m @ 6:0ce3c2070089

Removed duplicate code and fixed doc in timed_action.
author samer
date Mon, 14 Jan 2013 14:33:37 +0000
parents 672052bd81f8
children 5de03f77dae1
line wrap: on
line source
% asink - Do nothing absorbing arrow
%
% asink :: N:natural -> arrow(_:arglist(N),{},empty).
function a=asink(nin)
	if nargin<1, nin=1; end
	a=arr(@nop,'nargin',nin,'nargout',0);
end