From: Steven Taylor <[email protected]> What I was trying to get at was where a term is defined for both dyadic and monadic cases, how do I 'select' the monadic case instead of the dyadic case when the dyadic case would normally be applicable?
3 (* + %) 2 7.5 but let's say for argument sake that I'd like 6.5 instead. ================= Is this what you mean? 3 (* + %...@]) 2 6.5 3 (* + [: % ]) 2 6.5 ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm
