in reply to Re^4: An infix fix
in thread An infix fix
I don't object to defining the zero-arguments case; I just object to using it as the basis for nonzero-argument cases. It is a special case:
sub AND { @_ > 1 ? shift && AND(@_) : @_ ? shift : '#t'; }
|
|---|