John Randall-3 wrote: > > [...] > Before posing the question, I followed Oleg's advice in that I eyeballed > the dyads in J Phrases: almost all use [ ] @ @: or constant functions. > > I've also noticed that phrases u@:[ and similar are coming up a lot in programming in J, incurring extra typing and sometimes even unnecessarily lengthening expressions. Following adverbs could be helpful in that regard:
l=:@[ r=:@] L=:@:[ R=:@:] for instance: u...@[v w@:] can be written as: u l v w R -- View this message in context: http://www.nabble.com/Examples-of-dyadic-forks-tp21781826s24193p21810603.html Sent from the J Programming mailing list archive at Nabble.com. ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm
