vote up 2 vote down star

ok, embarrassing enough, I posted code that I need explained. Specifically, it first chains absolute value and subtraction together, then tacks on a sort, all the while not having to mention parameters and arguments at all, because of the presense of "adverbs" that can join these functions "verbs"

What (non-APL-type) languages support this kind of no-arguments function composition (I have the vague idea it ties in strongly to the concepts of monad/dyad and rank, but its hard to get a particularly easy-to-understand picture just from reading Wikipedia) and what do I call this concept?

flag

76% accept rate

3 Answers

vote up 3 vote down check

This is similar to pointfree style; this works though composition and currying. Functional languages such as Haskell and ML use this.

Concatenative programming languages like Joy, Factor, and Cat also have these "adverbs."

link|flag
ah. this is what I was looking for. – Jimmy Jan 16 at 16:00
vote up 2 vote down

looks like junk to me, but seems to be a real language

as for the question, what would i call it? i would call it "disturbing"!

i mean, if the cat walked across your keyboard when you were programming in this language, how would you know? it's worse than Perl! ;-)

link|flag
vote up 0 vote down

I believe they're called higher-order functions: functions that take other functions as arguments. The syntax of J somewhat obscures what's going on, though: the sort operator is taking the absolute-value-of-difference subexpression as a function argument. The syntactic technique is called currying, in which all functions are reduced to functions of one argument.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.