Tacit programming: Difference between revisions

Content deleted Content added
AnomieBOT (talk | contribs)
m Dating maintenance tags: {{Cn}}
Unix pipeline: specified
Tags: Mobile edit Mobile web edit
Line 123:
sort | uniq -c | sort -rn
</source>
is a tacit or point-free composition which returns the counts of its arguments and the arguments, in the order of decreasing counts. The 'sort' and 'uniq' are the functions, the '-c' and '-rn' control the functions, but the arguments are not mentioned. The '|' is the (reversed) composition operator.
 
== See also ==