Penguin
Diff: HigherOrderFunctions
EditPageHistoryDiffInfoLikePages

Differences between current version and previous revision of HigherOrderFunctions.

Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History

Newer page: version 4 Last edited on Wednesday, November 19, 2003 6:20:19 pm by AristotlePagaltzis
Older page: version 3 Last edited on Thursday, August 7, 2003 3:39:17 am by AristotlePagaltzis Revert
@@ -1,7 +1,7 @@
 Higher-order functions are functions that take other functions as parameters, create functions or return functions. 
  
-The use of higher-order functions with PolymorphicTypes results in a style of programming that rivals ObjectOrientedProgramming for expressiveness. 
+The use of higher-order functions with PolymorphicTypes results in a style of programming that rivals ObjectOrientation for expressiveness. Some may assert it beats it
  
 [ML], [Haskell], [LISP], [Python] all allow full use of high-order functions. [C] allows you to pass functions as arguments, but their usefulness is rather limited. 
  
 !!!An Example