Tacit programming: Difference between revisions

Content deleted Content added
Unix pipeline: specified
Tags: Mobile edit Mobile web edit
Undid revision 939511075 by 147.229.208.56 (talk)
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 ==