Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Functional programming

Listen to this article
From Wikipedia, the free encyclopedia
Programming paradigm based on applying and composing functions
For subroutine-oriented programming, seeProcedural programming.

Incomputer science,functional programming is aprogramming paradigm where programs are constructed byapplying andcomposing functions. It is adeclarative programming paradigm in which function definitions aretrees ofexpressions that mapvalues to other values, rather than a sequence ofimperativestatements which update therunning state of the program.

In functional programming, functions are treated asfirst-class entities, meaning that they can be bound to names (including localidentifiers), passed asarguments, andreturned from other functions, just as any otherdata type can. This allows programs to be written in adeclarative andcomposable style, where small functions are combined in amodular manner.

Functional programming is sometimes treated as synonymous withpurely functional programming, a subset of functional programming that treats all functions asdeterministic mathematicalfunctions, orpure functions. When a pure function is called with some given arguments, it will always return the same result, and cannot be affected by any mutablestate or otherside effects. This is in contrast with impureprocedures, common inimperative programming, which can have side effects (such as modifying the program's state or taking input from a user). Proponents of purely functional programming claim that by restricting side effects, programs can have fewerbugs, be easier todebug andtest, and be more suited toformal verification.[1][2]

Functional programming has its roots in academia, evolving from thelambda calculus, a formal system of computation based only on functions. Functional programming has historically been less popular than imperative programming, but many functional languages are seeing use today in industry and education, includingCommon Lisp,Scheme,[3][4][5][6]Clojure,Wolfram Language,[7][8]Racket,[9]Erlang,[10][11][12]Elixir,[13]OCaml,[14][15]Haskell,[16][17] andF#.[18][19]Lean is a functional programming language commonly used for verifying mathematical theorems.[20] Functional programming is also key to some languages that have found success in specific domains, likeJavaScript in the Web,[21]R in statistics,[22][23]J,K andQ in financial analysis, andXQuery/XSLT forXML.[24][25] Domain-specific declarative languages likeSQL andLex/Yacc use some elements of functional programming, such as not allowingmutable values.[26] In addition, many other programming languages support programming in a functional style or have implemented features from functional programming, such asC++ (sinceC++11),C#,[27]Kotlin,[28]Perl,[29]PHP,[30]Python,[31]Go,[32]Rust,[33]Raku,[34]Scala,[35] andJava (since Java 8).[36]

History

[edit]

Thelambda calculus, developed in the 1930s byAlonzo Church, is aformal system ofcomputation built fromfunction application. In 1937Alan Turing proved that the lambda calculus andTuring machines are equivalent models of computation,[37] showing that the lambda calculus isTuring complete. Lambda calculus forms the basis of all functional programming languages. An equivalent theoretical formulation,combinatory logic, was developed byMoses Schönfinkel andHaskell Curry in the 1920s and 1930s.[38]

Church later developed a weaker system, thesimply typed lambda calculus, which extended the lambda calculus by assigning adata type to all terms.[39] This forms the basis for statically typed functional programming.

The firsthigh-level functional programming language,Lisp, was developed in the late 1950s for theIBM 700/7000 series of scientific computers byJohn McCarthy while atMassachusetts Institute of Technology (MIT).[40] Lisp functions were defined using Church's lambda notation, extended with a label construct to allowrecursive functions.[41] Lisp first introduced many paradigmatic features of functional programming, though early Lisps weremulti-paradigm languages, and incorporated support for numerous programming styles as new paradigms evolved. Later dialects, such asScheme andClojure, and offshoots such asDylan andJulia, sought to simplify and rationalise Lisp around a cleanly functional core, whileCommon Lisp was designed to preserve and update the paradigmatic features of the numerous older dialects it replaced.[42]

Information Processing Language (IPL), 1956, is sometimes cited as the first computer-based functional programming language.[43] It is anassembly-style language for manipulating lists of symbols. It does have a notion ofgenerator, which amounts to a function that accepts a function as an argument, and, since it is alow-level programming language, code can be data, so IPL can be regarded as having higher-order functions. However, it relies heavily on the mutating list structure and similar imperative features.

Kenneth E. Iverson developedAPL in the early 1960s, described in his 1962 bookA Programming Language (ISBN 9780471430148). APL was the primary influence onJohn Backus'sFP. In the early 1990s, Iverson andRoger Hui createdJ. In the mid-1990s,Arthur Whitney, who had previously worked with Iverson, createdK, which is used commercially in financial industries along with its descendantQ.

In the mid-1960s,Peter Landin inventedSECD machine,[44] the firstabstract machine for a functional programming language,[45] described a correspondence betweenALGOL 60 and thelambda calculus,[46][47] and proposed theISWIM programming language.[48]

John Backus presentedFP in his 1977Turing Award lecture "Can Programming Be Liberated From thevon Neumann Style? A Functional Style and its Algebra of Programs".[49] He defines functional programs as being built up in a hierarchical way by means of "combining forms" that allow an "algebra of programs"; in modern language, this means that functional programs follow theprinciple of compositionality.[citation needed] Backus's paper popularized research into functional programming, though it emphasizedfunction-level programming rather than the lambda-calculus style now associated with functional programming.

The 1973 languageML was created byRobin Milner at theUniversity of Edinburgh, andDavid Turner developed the languageSASL at theUniversity of St Andrews. Also in Edinburgh in the 1970s, Burstall and Darlington developed the functional languageNPL.[50] NPL was based onKleene Recursion Equations and was first introduced in their work on program transformation.[51] Burstall, MacQueen and Sannella then incorporated thepolymorphic type checking from ML to produce the languageHope.[52] ML eventually developed into several dialects, the most common of which are nowOCaml andStandard ML.

In the 1970s,Guy L. Steele andGerald Jay Sussman developedScheme, as described in theLambda Papers and the 1985 textbookStructure and Interpretation of Computer Programs. Scheme was the first dialect of lisp to uselexical scoping and to requiretail-call optimization, features that encourage functional programming.

In the 1980s,Per Martin-Löf developedintuitionistic type theory (also calledconstructive type theory), which associated functional programs withconstructive proofs expressed asdependent types. This led to new approaches tointeractive theorem proving and has influenced the development of subsequent functional programming languages.[citation needed]

The lazy functional language,Miranda, developed by David Turner, initially appeared in 1985 and had a strong influence onHaskell. With Miranda being proprietary, Haskell began with a consensus in 1987 to form anopen standard for functional programming research; implementation releases have been ongoing as of 1990.

More recently it has found use in niches such as parametricCAD in theOpenSCAD language built on theCGAL framework, although its restriction on reassigning values (all values are treated as constants) has led to confusion among users who are unfamiliar with functional programming as a concept.[53]

Functional programming continues to be used in commercial settings.[54][55][56]

Concepts

[edit]

A number of concepts[57] and paradigms are specific to functional programming, and generally foreign toimperative programming (includingobject-oriented programming). However, programming languages often cater to several programming paradigms, so programmers using "mostly imperative" languages may have utilized some of these concepts.[58]

First-class and higher-order functions

[edit]
Main articles:First-class function andHigher-order function

Higher-order functions are functions that can either take other functions as arguments or return them as results. In calculus, an example of a higher-order function is thedifferential operatord/dx{\displaystyle d/dx}, which returns thederivative of a functionf{\displaystyle f}.

Higher-order functions are closely related tofirst-class functions in that higher-order functions and first-class functions both allow functions as arguments and results of other functions. The distinction between the two is subtle: "higher-order" describes a mathematical concept of functions that operate on other functions, while "first-class" is a computer science term for programming language entities that have no restriction on their use (thus first-class functions can appear anywhere in the program that other first-class entities like numbers can, including as arguments to other functions and as their return values).

Higher-order functions enablepartial application orcurrying, a technique that applies a function to its arguments one at a time, with each application returning a new function that accepts the next argument. This lets a programmer succinctly express, for example, thesuccessor function as the addition operator partially applied to thenatural number one.

Pure functions

[edit]
Main article:Pure function

Pure functions (or expressions) have noside effects (memory or I/O). This means that pure functions have several useful properties, many of which can be used to optimize the code:

  • If the result of a pure expression is not used, it can be removed without affecting other expressions.
  • If a pure function is called with arguments that cause no side-effects, the result is constant with respect to that argument list (sometimes calledreferential transparency oridempotence), i.e., calling the pure function again with the same arguments returns the same result. (This can enable caching optimizations such asmemoization.)
  • If there is no data dependency between two pure expressions, their order can be reversed, or they can be performed inparallel and they cannot interfere with one another (in other terms, the evaluation of any pure expression isthread-safe).
  • If the entire language does not allow side-effects, then any evaluation strategy can be used; this gives the compiler freedom to reorder or combine the evaluation of expressions in a program (for example, usingdeforestation).

While most compilers for imperative programming languages detect pure functions and perform common-subexpression elimination for pure function calls, they cannot always do this for pre-compiled libraries, which generally do not expose this information, thus preventing optimizations that involve those external functions. Some compilers, such asgcc, add extra keywords for a programmer to explicitly mark external functions as pure, to enable such optimizations.Fortran 95 also lets functions be designatedpure.[59] C++11 addedconstexpr keyword with similar semantics.

Recursion

[edit]
Main article:Recursion (computer science)

Iteration (looping) in functional languages is usually accomplished viarecursion.Recursive functions invoke themselves, letting an operation be repeated until it reaches thebase case. In general, recursion requires maintaining astack, which consumes space in a linear amount to the depth of recursion. This could make recursion prohibitively expensive to use instead of imperative loops. However, a special form of recursion known astail recursion can be recognized and optimized by a compiler into the same code used to implement iteration in imperative languages. Tail recursion optimization can be implemented by transforming the program intocontinuation passing style during compiling, among other approaches.

TheScheme language standard requires implementations to support proper tail recursion, meaning they must allow an unbounded number of active tail calls.[60][61] Proper tail recursion is not simply an optimization; it is a language feature that assures users that they can use recursion to express a loop and doing so would be safe-for-space.[62] Moreover, contrary to its name, it accounts for all tail calls, not just tail recursion. While proper tail recursion is usually implemented by turning code into imperative loops, implementations might implement it in other ways. For example,Chicken intentionally maintains a stack and lets thestack overflow. However, when this happens, itsgarbage collector will claim space back,[63] allowing an unbounded number of active tail calls even though it does not turn tail recursion into a loop.

Common patterns of recursion can be abstracted away using higher-order functions, withcatamorphisms andanamorphisms (or "folds" and "unfolds") being the most obvious examples. Such recursion schemes play a role analogous to built-in control structures such asloops inimperative languages.

Most general purpose functional programming languages allow unrestricted recursion and areTuring complete, which makes thehalting problemundecidable, can cause unsoundness ofequational reasoning, and generally requires the introduction ofinconsistency into the logic expressed by the language'stype system. Some special purpose languages such asRocq allow onlywell-founded recursion and arestrongly normalizing (nonterminating computations can be expressed only with infinite streams of values calledcodata). As a consequence, these languages fail to be Turing complete and expressing certain functions in them is impossible, but they can still express a wide class of interesting computations while avoiding the problems introduced by unrestricted recursion. Functional programming limited to well-founded recursion with a few other constraints is calledtotal functional programming.[64]

Strict versus non-strict evaluation

[edit]
Main article:Evaluation strategy

Functional languages can be categorized by whether they usestrict (eager) ornon-strict (lazy) evaluation, concepts that refer to how function arguments are processed when an expression is being evaluated. The technical difference is in thedenotational semantics of expressions containing failing or divergent computations. Under strict evaluation, the evaluation of any term containing a failing subterm fails. For example, thePython statement:

print(len([2+1,3*2,1/0,5-4]))

fails under strict evaluation because of the division by zero in the third element of the list. Under lazy evaluation, the length function returns the value 4 (i.e., the number of items in the list), since evaluating it does not attempt to evaluate the terms making up the list. In brief, strict evaluation always fully evaluates function arguments before invoking the function. Lazy evaluation does not evaluate function arguments unless their values are required to evaluate the function call itself.

The usual implementation strategy for lazy evaluation in functional languages isgraph reduction.[65] Lazy evaluation is used by default in several pure functional languages, includingMiranda,Clean, andHaskell.

Hughes 1984 argues for lazy evaluation as a mechanism for improving program modularity throughseparation of concerns, by easing independent implementation of producers and consumers of data streams.[2] Launchbury 1993 describes some difficulties that lazy evaluation introduces, particularly in analyzing a program's storage requirements, and proposes anoperational semantics to aid in such analysis.[66] Harper 2009 proposes including both strict and lazy evaluation in the same language, using the language's type system to distinguish them.[67]

Type systems

[edit]
Main article:Type system

Especially since the development ofHindley–Milner type inference in the 1970s, functional programming languages have tended to usetyped lambda calculus, rejecting all invalid programs at compilation time and riskingfalse positive errors, as opposed to theuntyped lambda calculus, that accepts all valid programs at compilation time and risksfalse negative errors, used in Lisp and its variants (such asScheme), as they reject all invalid programs at runtime when the information is enough to not reject valid programs. The use ofalgebraic data types makes manipulation of complex data structures convenient; the presence of strong compile-time type checking makes programs more reliable in absence of other reliability techniques liketest-driven development, whiletype inference frees the programmer from the need to manually declare types to the compiler in most cases.

Some research-oriented functional languages such asRocq,Agda,Cayenne, andEpigram are based onintuitionistic type theory, which lets types depend on terms. Such types are calleddependent types. These type systems do not have decidable type inference and are difficult to understand and program with.[68][69][70][71] But dependent types can express arbitrary propositions inhigher-order logic. Through theCurry–Howard isomorphism, then, well-typed programs in these languages become a means of writing formalmathematical proofs from which a compiler can generatecertified code. While these languages are mainly of interest in academic research (including informalized mathematics), they have begun to be used in engineering as well.Compcert is acompiler for a subset of the languageC that is written inRocq and formally verified.[72]

A limited form of dependent types calledgeneralized algebraic data types (GADT's) can be implemented in a way that provides some of the benefits of dependently typed programming while avoiding most of its inconvenience.[73] GADT's are available in theGlasgow Haskell Compiler, inOCaml[74] and inScala,[75] and have been proposed as additions to other languages including Java and C#.[76]

Referential transparency

[edit]
Main article:Referential transparency

Functional programs do not have assignment statements, that is, the value of a variable in a functional program never changes once defined. This eliminates any chances of side effects because any variable can be replaced with its actual value at any point of execution. So, functional programs are referentially transparent.[77]

ConsiderC assignment statementx = x * 10, this changes the value assigned to the variablex. Let us say that the initial value ofx was1, then two consecutive evaluations of the variablex yields10 and100 respectively. Clearly, replacingx = x * 10 with either10 or100 gives a program a different meaning, and so the expressionis not referentially transparent. In fact, assignment statements are never referentially transparent.

Now, consider another function such asintplusOne(intx){returnx+1;}is transparent, as it does not implicitly change the input x and thus has no suchside effects.Functional programs exclusively use this type of function and are therefore referentially transparent.

Data structures

[edit]
Main article:Purely functional data structure

Purely functionaldata structures are often represented in a different way to theirimperative counterparts.[78] For example, thearray with constant access and update times is a basic component of most imperative languages, and many imperative data-structures, such as thehash table andbinary heap, are based on arrays. Arrays can be replaced bymaps or random access lists, which admit purely functional implementation, but havelogarithmic access and update times. Purely functional data structures havepersistence, a property of keeping previous versions of the data structure unmodified. In Clojure, persistent data structures are used as functional alternatives to their imperative counterparts. Persistent vectors, for example, use trees for partial updating. Calling the insert method will result in some but not all nodes being created.[79]

Comparison to imperative programming

[edit]

Functional programming is very different fromimperative programming. The most significant differences stem from the fact that functional programming avoidsside effects, which are used in imperative programming to implement state and I/O. Pure functional programming completely prevents side-effects and provides referential transparency.

Higher-order functions are rarely used in older imperative programming. A traditional imperative program might use a loop to traverse and modify a list. A functional program, on the other hand, would probably use a higher-order "map" function that takes a function and a list, generating and returning a new list by applying the function to each list item.

Imperative vs. functional programming

[edit]

The following two examples (written inJava) achieve the same effect: they multiply all even numbers in an array by 10 and add them all, storing the final sum in the variableresult.

Traditional imperative loop:

int[]numList={1,2,3,4,5,6,7,8,9,10};intresult=0;for(inti:numList){if(i%2==0){result+=i*10;}}

Functional programming with higher-order functions:

importjava.util.Arrays;int[]numList={1,2,3,4,5,6,7,8,9,10};intresult=Arrays.stream(numList).filter(n->n%2==0).map(n->n*10).reduce(0,Integer::sum);

Sometimes the abstractions offered by functional programming might lead to development of more robust code that avoids certain issues that might arise when building upon large amount of complex, imperative code, such asoff-by-one errors (seeGreenspun's tenth rule).

Simulating state

[edit]

There are tasks (for example, maintaining a bank account balance) that often seem most naturally implemented with state. Pure functional programming performs these tasks, and I/O tasks such as accepting user input and printing to the screen, in a different way.

The pure functional programming languageHaskell implements them usingmonads, derived fromcategory theory.[80] Monads offer a way to abstract certain types of computational patterns, including (but not limited to) modeling of computations with mutable state (and other side effects such as I/O) in an imperative manner without losing purity. While existing monads may be easy to apply in a program, given appropriate templates and examples, many students find them difficult to understand conceptually, e.g., when asked to define new monads (which is sometimes needed for certain types of libraries).[81]

Functional languages also simulate states by passing around immutable states. This can be done by making a function accept the state as one of its parameters, and return a new state together with the result, leaving the old state unchanged.[82]

Impure functional languages usually include a more direct method of managing mutable state.Clojure, for example, uses managed references that can be updated by applying pure functions to the current state. This kind of approach enables mutability while still promoting the use of pure functions as the preferred way to express computations.[citation needed]

Alternative methods such asHoare logic anduniqueness have been developed to track side effects in programs. Some modern research languages useeffect systems to make the presence of side effects explicit.[83]

Efficiency issues

[edit]

Functional programming languages are typically less efficient in their use ofCPU and memory than imperative languages such asC andPascal.[84] This is related to the fact that some mutable data structures like arrays have a very straightforward implementation using present hardware. Flat arrays may be accessed very efficiently with deeply pipelined CPUs, prefetched efficiently through caches (with no complexpointer chasing), or handled with SIMD instructions. It is also not easy to create their equally efficient general-purpose immutable counterparts. For purely functional languages, the worst-case slowdown is logarithmic in the number of memory cells used, because mutable memory can be represented by a purely functional data structure with logarithmic access time (such as a balanced tree).[85] However, such slowdowns are not universal. For programs that perform intensive numerical computations, functional languages such asOCaml andClean are only slightly slower than C according toThe Computer Language Benchmarks Game.[86] For programs that handle largematrices and multidimensionaldatabases,array functional languages (such asJ andK) were designed with speed optimizations.

Immutability of data can in many cases lead to execution efficiency by allowing the compiler to make assumptions that are unsafe in an imperative language, thus increasing opportunities forinline expansion.[87] Even if the involved copying that may seem implicit when dealing with persistent immutable data structures might seem computationally costly, some functional programming languages, likeClojure solve this issue by implementing mechanisms for safe memory sharing betweenformallyimmutable data.[88]Rust distinguishes itself by its approach to data immutability which involves immutablereferences[89] and a concept calledlifetimes.[90]

Immutable data with separation of identity and state andshared-nothing schemes can also potentially be more well-suited forconcurrent and parallel programming by the virtue of reducing or eliminating the risk of certain concurrency hazards, since concurrent operations are usuallyatomic and this allows eliminating the need for locks. This is how for examplejava.util.concurrent classes are implemented, where some of them are immutable variants of the corresponding classes that are not suitable for concurrent use.[91] Functional programming languages often have a concurrency model that instead of shared state and synchronization, leveragesmessage passing mechanisms (such as theactor model, where each actor is a container for state, behavior, child actors and a message queue).[92][93] This approach is common inErlang/Elixir orAkka.

Lazy evaluation may also speed up the program, even asymptotically, whereas it may slow it down at most by a constant factor (however, it may introducememory leaks if used improperly). Launchbury 1993[66] discusses theoretical issues related to memory leaks from lazy evaluation, and O'Sullivanet al. 2008[94] give some practical advice for analyzing and fixing them.However, the most general implementations of lazy evaluation making extensive use of dereferenced code and data perform poorly on modern processors with deep pipelines and multi-level caches (where a cache miss may cost hundreds of cycles)[citation needed].

Abstraction cost

[edit]

Some functional programming languages might not optimize abstractions such as higher order functions like "map" or "filter" as efficiently as the underlying imperative operations. Consider, as an example, the following two ways to check if 5 is an even number inClojure:

(even?5)(.equals(mod52)0)

Whenbenchmarked using theCriterium tool on aRyzen 7900X GNU/Linux PC in aLeiningenREPL 2.11.2, running onJava VM version 22 and Clojure version 1.11.1, the first implementation, which is implemented as:

(defneven?"Returns true if n is even, throws an exception if n is not an integer"{:added"1.0":statictrue}[n](if(integer?n)(zero?(bit-and(clojure.lang.RT/uncheckedLongCastn)1))(throw(IllegalArgumentException.(str"Argument must be an integer: "n)))))

has the mean execution time of 4.76 ms, while the second one, in which.equals is a direct invocation of the underlyingJava method, has a mean execution time of 2.8 μs – roughly 1700 times faster. Part of that can be attributed to the type checking and exception handling involved in the implementation ofeven?. For instance thelo library forGo, which implements various higher-order functions common in functional programming languages usinggenerics. In a benchmark provided by the library's author, callingmap is 4% slower than an equivalentfor loop and has the sameallocation profile,[95] which can be attributed to various compiler optimizations, such asinlining.[96]

One distinguishing feature ofRust arezero-cost abstractions. This means that using them imposes no additional runtime overhead. This is achieved thanks to the compiler usingloop unrolling, where each iteration of a loop, be it imperative or using iterators, is converted into a standaloneAssembly instruction, without the overhead of the loop controlling code. If an iterative operation writes to an array, the resulting array's elementswill be stored in specific CPU registers, allowing forconstant-time access at runtime.[97]

Functional programming in non-functional languages

[edit]

It is possible to use a functional style of programming in languages that are not traditionally considered functional languages.[98] For example, bothD[99] andFortran 95[59] explicitly support pure functions.

JavaScript,Lua,[100]Python andGo[101] hadfirst class functions from their inception.[102] Python had support for "lambda", "map", "reduce", and "filter" in 1994, as well as closures in Python 2.2,[103] though Python 3 relegated "reduce" to thefunctools standard library module.[104] First-class functions have been introduced into other mainstream languages such asPerl 5.0 in 1994,PHP 5.3,Visual Basic 9,C# 3.0,C++11, andKotlin.[28]

In Perl,lambda,map,reduce,filter, andclosures are fully supported and frequently used. The bookHigher-Order Perl, released in 2005, was written to provide an expansive guide on using Perl for functional programming.

In PHP,anonymous classes,closures and lambdas are fully supported. Libraries and language extensions for immutable data structures are being developed to aid programming in the functional style.

InJava, anonymous classes can sometimes be used to simulate closures;[105] however, anonymous classes are not always proper replacements to closures because they have more limited capabilities.[106] Java 8 supports lambda expressions as a replacement for some anonymous classes.[107]

InC#, anonymous classes are not necessary, because closures and lambdas are fully supported. Libraries and language extensions for immutable data structures are being developed to aid programming in the functional style in C#.

Manyobject-orienteddesign patterns are expressible in functional programming terms: for example, thestrategy pattern simply dictates use of a higher-order function, and thevisitor pattern roughly corresponds to acatamorphism, orfold.

Similarly, the idea of immutable data from functional programming is often included in imperative programming languages,[108] for example the tuple in Python, which is an immutable array, and Object.freeze() in JavaScript.[109]

Comparison to logic programming

[edit]

Logic programming can be viewed as a generalisation of functional programming, in which functions are a special case of relations.[110]For example, the function, mother(X) = Y, (every X has only one mother Y) can be represented by the relation mother(X, Y). Whereas functions have a strict input-output pattern of arguments, relations can be queried with any pattern of inputs and outputs. Consider the following logic program:

mother(charles,elizabeth).mother(harry,diana).

The program can be queried, like a functional program, to generate mothers from children:

?-mother(harry,X).X=diana.?-mother(charles,X).X=elizabeth.

But it can also be queriedbackwards, to generate children:

?-mother(X,elizabeth).X=charles.?-mother(X,diana).X=harry.

It can even be used to generate all instances of the mother relation:

?-mother(X,Y).X=charles,Y=elizabeth.X=harry,Y=diana.

Compared with relational syntax, functional syntax is a more compact notation for nested functions. For example, the definition of maternal grandmother in functional syntax can be written in the nested form:

maternal_grandmother(X)=mother(mother(X)).

The same definition in relational notation needs to be written in the unnested form:

maternal_grandmother(X,Y):-mother(X,Z),mother(Z,Y).

Here:- meansif and ,meansand.

However, the difference between the two representations is simply syntactic. InCiao Prolog, relations can be nested, like functions in functional programming:[111]

grandparent(X):=parent(parent(X)).parent(X):=mother(X).parent(X):=father(X).mother(charles):=elizabeth.father(charles):=phillip.mother(harry):=diana.father(harry):=charles.?-grandparent(X,Y).X=harry,Y=elizabeth.X=harry,Y=phillip.

Ciao transforms the function-like notation into relational form and executes the resulting logic program using the standard Prolog execution strategy.

Applications

[edit]

Text editors

[edit]

Emacs, a highly extensible text editor family uses its ownLisp dialect for writing plugins. The original author of the most popular Emacs implementation,GNU Emacs and Emacs Lisp,Richard Stallman considers Lisp one of his favorite programming languages.[112]

Spreadsheets

[edit]

Spreadsheets can be considered a form of pure,zeroth-order, strict-evaluation functional programming system.[113] However, spreadsheets generally lack higher-order functions as well as code reuse, and in some implementations, also lack recursion. Several extensions have been developed for spreadsheet programs to enable higher-order and reusable functions, but so far remain primarily academic in nature.[114]

Microservices

[edit]

Due to theircomposability, functional programming paradigms can be suitable formicroservices-based architectures.[115]

Academia

[edit]

Functional programming is an active area of research in the field ofprogramming language theory. There are severalpeer-reviewed publication venues focusing on functional programming, including theInternational Conference on Functional Programming, theJournal of Functional Programming, and theSymposium on Trends in Functional Programming.

Industry

[edit]

Functional programming has been employed in a wide range of industrial applications. For example,Erlang, which was developed by theSwedish companyEricsson in the late 1980s, was originally used to implementfault-toleranttelecommunications systems,[11] but has since become popular for building a range of applications at companies such asNortel,Facebook,Électricité de France andWhatsApp.[10][12][116][117][118]Scheme, a dialect ofLisp, was used as the basis for several applications on earlyApple Macintosh computers[3][4] and has been applied to problems such as training-simulation software[5] andtelescope control.[6]OCaml, which was introduced in the mid-1990s, has seen commercial use in areas such as financial analysis,[14]driver verification, industrialrobot programming and static analysis ofembedded software.[15]Haskell, though initially intended as a research language,[17] has also been applied in areas such as aerospace systems, hardware design and web programming.[16][17]

Other functional programming languages that have seen use in industry includeScala,[119]F#,[18][19]Wolfram Language,[7]Lisp,[120]Standard ML[121][122] andClojure.[123]Scala has been widely used inData science,[124] whileClojureScript,[125]Elm[126] orPureScript[127] are some of the functional frontend programming languages used in production.Elixir'sPhoenix framework is also used by some relatively popular commercial projects, such asFont Awesome orAllegro (one of the biggest e-commerce platforms in Poland)[128]'s classified ads platformAllegro Lokalnie.[129]

Functional "platforms" have been popular in finance for risk analytics (particularly with large investment banks). Risk factors are coded as functions that form interdependent graphs (categories) to measure correlations in market shifts, similar in manner toGröbner basis optimizations but also for regulatory frameworks such asComprehensive Capital Analysis and Review. Given the use of OCaml andCaml variations in finance, these systems are sometimes considered related to acategorical abstract machine. Functional programming is heavily influenced bycategory theory.[citation needed]

Education

[edit]

Manyuniversities teach functional programming.[130][131][132][133] Some treat it as an introductory programming concept[133] while others first teach imperative programming methods.[132][134]

Outside of computer science, functional programming is used to teach problem-solving, algebraic and geometric concepts.[135] It has also been used to teach classical mechanics, as in the bookStructure and Interpretation of Classical Mechanics.

In particular,Scheme has been a relatively popular choice for teaching programming for years.[136][137]

See also

[edit]

Notes and references

[edit]
  1. ^Hudak, Paul (September 1989)."Conception, evolution, and application of functional programming languages"(PDF).ACM Computing Surveys.21 (3):359–411.doi:10.1145/72551.72554.S2CID 207637854. Archived fromthe original(PDF) on 2016-01-31. Retrieved2013-08-10.
  2. ^abHughes, John (1984)."Why Functional Programming Matters".
  3. ^abClinger, Will (1987)."MultiTasking and MacScheme".MacTech.3 (12). Retrieved2008-08-28.
  4. ^abHartheimer, Anne (1987)."Programming a Text Editor in MacScheme+Toolsmith".MacTech.3 (1). Archived fromthe original on 2011-06-29. Retrieved2008-08-28.
  5. ^abKidd, Eric.Terrorism Response Training in Scheme. CUFP 2007. Archived fromthe original on 2010-12-21. Retrieved2009-08-26.
  6. ^abCleis, Richard.Scheme in Space. CUFP 2006. Archived fromthe original on 2010-05-27. Retrieved2009-08-26.
  7. ^ab"Wolfram Language Guide: Functional Programming". 2015. Retrieved2015-08-24.
  8. ^"Functional vs. Procedural Programming Language".Department of Applied Math. University of Colorado. Archived fromthe original on 2007-11-13. Retrieved2006-08-28.
  9. ^"State-Based Scripting in Uncharted 2"(PDF). Archived fromthe original(PDF) on 2012-12-15. Retrieved2011-08-08.
  10. ^ab"Who uses Erlang for product development?".Frequently asked questions about Erlang. Retrieved2018-04-27.
  11. ^abArmstrong, Joe (June 2007). "A history of Erlang".Proceedings of the third ACM SIGPLAN conference on History of programming languages. Third ACM SIGPLAN Conference on History of Programming Languages. San Diego, California.doi:10.1145/1238844.1238850.ISBN 9781595937667.
  12. ^abLarson, Jim (March 2009)."Erlang for concurrent programming".Communications of the ACM.52 (3): 48.doi:10.1145/1467247.1467263.S2CID 524392.
  13. ^"The Elixir Programming Language". Retrieved2021-02-14.
  14. ^abMinsky, Yaron; Weeks, Stephen (July 2008)."Caml Trading — experiences with functional programming on Wall Street".Journal of Functional Programming.18 (4):553–564.doi:10.1017/S095679680800676X.S2CID 30955392.
  15. ^abLeroy, Xavier.Some uses of Caml in Industry(PDF). CUFP 2007. Archived fromthe original(PDF) on 2011-10-08. Retrieved2009-08-26.
  16. ^ab"Haskell in industry".Haskell Wiki. Retrieved2009-08-26.Haskell has a diverse range of use commercially, from aerospace and defense, to finance, to web startups, hardware design firms and lawnmower manufacturers.
  17. ^abcHudak, Paul; Hughes, J.; Jones, S. P.; Wadler, P. (June 2007).A history of Haskell: being lazy with class. Third ACM SIGPLAN Conference on History of Programming Languages. San Diego, California.doi:10.1145/1238844.1238856. Retrieved2013-09-26.
  18. ^abMansell, Howard (2008).Quantitative Finance in F#. CUFP 2008. Archived fromthe original on 2015-07-08. Retrieved2009-08-29.
  19. ^abPeake, Alex (2009).The First Substantial Line of Business Application in F#. CUFP 2009. Archived fromthe original on 2009-10-17. Retrieved2009-08-29.
  20. ^de Moura, Leonardo; Ullrich, Sebastian (July 2021). "The Lean 4 Theorem Prover and Programming Language".Lecture Notes in Artificial Intelligence. Conference on Automated Deduction. Vol. 12699. pp. 625–635.doi:10.1007/978-3-030-79876-5_37.ISSN 1611-3349.
  21. ^Banz, Matt (2017-06-27)."An introduction to functional programming in JavaScript".Opensource.com. Retrieved2021-01-09.
  22. ^"The useR! 2006 conference schedule includes papers on the commercial use of R". R-project.org. 2006-06-08. Retrieved2011-06-20.
  23. ^Chambers, John M. (1998).Programming with Data: A Guide to the S Language. Springer Verlag. pp. 67–70.ISBN 978-0-387-98503-9.
  24. ^Novatchev, Dimitre."The Functional Programming Language XSLT — A proof through examples". RetrievedMay 27, 2006.
  25. ^Mertz, David."XML Programming Paradigms (part four): Functional Programming approached to XML processing".IBM developerWorks. RetrievedMay 27, 2006.
  26. ^Chamberlin, Donald D.;Boyce, Raymond F. (1974). "SEQUEL: A structured English query language".Proceedings of the 1974 ACM SIGFIDET:249–264.
  27. ^Functional Programming with C# - Simon Painter - NDC Oslo 2020, 8 August 2021, archived fromthe original on 2021-10-30, retrieved2021-10-23
  28. ^ab"Functional programming - Kotlin Programming Language".Kotlin. Retrieved2019-05-01.
  29. ^Dominus, Mark J. (2005).Higher-Order Perl.Morgan Kaufmann.ISBN 978-1-55860-701-9.
  30. ^Holywell, Simon (2014).Functional Programming in PHP. php[architect].ISBN 9781940111056.
  31. ^The Cain Gang Ltd."Python Metaclasses: Who? Why? When?"(PDF). Archived fromthe original(PDF) on 30 May 2009. Retrieved27 June 2009.
  32. ^"GopherCon 2020: Dylan Meeus - Functional Programming with Go".YouTube. 22 December 2020.
  33. ^"Functional Language Features: Iterators and Closures - The Rust Programming Language".doc.rust-lang.org. Retrieved2021-01-09.
  34. ^Vanderbauwhede, Wim (18 July 2020)."Cleaner code with functional programming". Archived fromthe original on 28 July 2020. Retrieved6 October 2020.
  35. ^"Effective Scala".Scala Wiki. Archived fromthe original on 2012-06-19. Retrieved2012-02-21.Effective Scala.
  36. ^"Documentation for package java.util.function since Java 8 (also known as Java 1.8)". Retrieved2021-06-16.
  37. ^Turing, A. M. (1937). "Computability and λ-definability".The Journal of Symbolic Logic.2 (4). Cambridge University Press:153–163.doi:10.2307/2268280.JSTOR 2268280.S2CID 2317046.
  38. ^Haskell Brooks Curry; Robert Feys (1958).Combinatory Logic. North-Holland Publishing Company. Retrieved10 February 2013.
  39. ^Church, A. (1940). "A Formulation of the Simple Theory of Types".Journal of Symbolic Logic.5 (2):56–68.doi:10.2307/2266170.JSTOR 2266170.S2CID 15889861.
  40. ^McCarthy, John (June 1978). "History of LISP".The first ACM SIGPLAN conference on History of programming languages - HOPL-1(PDF). Los Angeles, CA. pp. 173–185.doi:10.1145/800025.808387.{{cite book}}: CS1 maint: location missing publisher (link)
  41. ^John McCarthy (1960)."Recursive functions of symbolic expressions and their computation by machine, Part I."(PDF).Communications of the ACM.3 (4):184–195.doi:10.1145/367177.367199.S2CID 1489409.
  42. ^Guy L. Steele; Richard P. Gabriel (February 1996). "The evolution of Lisp".History of programming languages---II(PDF). pp. 233–330.doi:10.1145/234286.1057818.ISBN 978-0-201-89502-5.S2CID 47047140.
  43. ^The memoir ofHerbert A. Simon (1991),Models of My Life pp.189-190ISBN 0-465-04640-1 claims that he, Al Newell, and Cliff Shaw are "...commonly adjudged to be the parents of [the] artificial intelligence [field]," for writingLogic Theorist, a program that proved theorems fromPrincipia Mathematica automatically. To accomplish this, they had to invent a language and a paradigm that, viewed retrospectively, embeds functional programming.
  44. ^Landin, Peter J. (1964)."The mechanical evaluation of expressions".The Computer Journal.6 (4).British Computer Society:308–320.doi:10.1093/comjnl/6.4.308.
  45. ^Diehl, Stephan; Hartel, Pieter; Sestoft, Peter (2000). "Abstract machines for programming language implementation".Future Generation Computer Systems. Vol. 16. pp. 739–751.
  46. ^Landin, Peter J. (February 1965a)."Correspondence between ALGOL 60 and Church's Lambda-notation: part I".Communications of the ACM.8 (2).Association for Computing Machinery:89–101.doi:10.1145/363744.363749.S2CID 6505810.
  47. ^Landin, Peter J. (March 1965b)."A correspondence between ALGOL 60 and Church's Lambda-notation: part II".Communications of the ACM.8 (3).Association for Computing Machinery:158–165.doi:10.1145/363791.363804.S2CID 15781851.
  48. ^Landin, Peter J. (March 1966b)."The next 700 programming languages".Communications of the ACM.9 (3).Association for Computing Machinery:157–166.doi:10.1145/365230.365257.S2CID 13409665.
  49. ^Backus, J. (1978)."Can programming be liberated from the von Neumann style?: A functional style and its algebra of programs".Communications of the ACM.21 (8):613–641.doi:10.1145/359576.359579.
  50. ^R.M. Burstall. Design considerations for a functional programming language. Invited paper, Proc. Infotech State of the Art Conf. "The Software Revolution", Copenhagen, 45–57 (1977)
  51. ^R.M. Burstall and J. Darlington. A transformation system for developing recursive programs. Journal of the Association for Computing Machinery 24(1):44–67 (1977)
  52. ^R.M. Burstall, D.B. MacQueen and D.T. Sannella. HOPE: an experimental applicative language. Proceedings 1980 LISP Conference, Stanford, 136–143 (1980).
  53. ^"Make discovering assign() easier!".OpenSCAD. Archived fromthe original on 2023-04-19.
  54. ^Peter Bright (March 13, 2018)."Developers love trendy new languages but earn more with functional programming".Ars Technica.
  55. ^John Leonard (January 24, 2017)."The stealthy rise of functional programming". Computing.
  56. ^Leo Cheung (May 9, 2017)."Is functional programming better for your startup?".InfoWorld.
  57. ^Sean Tull - Monoidal Categories for Formal Concept Analysis.
  58. ^Pountain, Dick."Functional Programming Comes of Age".Byte (August 1994). Archived fromthe original on 2006-08-27. RetrievedAugust 31, 2006.
  59. ^ab"ISO/IEC JTC 1/SC 22/WG5/N2137 – Fortran 2015 Committee Draft (J3/17-007r2)"(PDF). International Organization for Standardization. July 6, 2017. pp. 336–338.
  60. ^"Revised^6 Report on the Algorithmic Language Scheme". R6rs.org. Retrieved2013-03-21.
  61. ^"Revised^6 Report on the Algorithmic Language Scheme - Rationale". R6rs.org. Retrieved2013-03-21.
  62. ^Clinger, William (1998). "Proper tail recursion and space efficiency".Proceedings of the ACM SIGPLAN 1998 conference on Programming language design and implementation - PLDI '98. pp. 174–185.doi:10.1145/277650.277719.ISBN 0897919874.S2CID 16812984.
  63. ^Baker, Henry (1994)."CONS Should Not CONS Its Arguments, Part II: Cheney on the M.T.A." Archived fromthe original on 2006-03-03. Retrieved2020-04-29.
  64. ^Turner, D.A. (2004-07-28)."Total Functional Programming".Journal of Universal Computer Science.10 (7):751–768.doi:10.3217/jucs-010-07-0751.
  65. ^The Implementation of Functional Programming Languages. Simon Peyton Jones, published by Prentice Hall, 1987
  66. ^abLaunchbury, John (March 1993).A Natural Semantics for Lazy Evaluation. Symposium on Principles of Programming Languages. Charleston, South Carolina:ACM. pp. 144–154.doi:10.1145/158511.158618.
  67. ^Robert W. Harper (2009).Practical Foundations for Programming Languages(PDF). Archived fromthe original(PDF) on 2016-04-07.
  68. ^Huet, Gérard P. (1973). "The Undecidability of Unification in Third Order Logic".Information and Control.22 (3):257–267.doi:10.1016/s0019-9958(73)90301-x.
  69. ^Huet, Gérard (Sep 1976).Resolution d'Equations dans des Langages d'Ordre 1,2,...ω (Ph.D.) (in French). Universite de Paris VII.
  70. ^Huet, Gérard (2002)."Higher Order Unification 30 years later"(PDF). In Carreño, V.; Muñoz, C.; Tahar, S. (eds.).Proceedings, 15th International Conference TPHOL. LNCS. Vol. 2410. Springer. pp. 3–12.
  71. ^Wells, J. B. (1993). "Typability and type checking in the second-order lambda-calculus are equivalent and undecidable".Tech. Rep. 93-011:176–185.CiteSeerX 10.1.1.31.3590.
  72. ^Leroy, Xavier (17 September 2018)."The Compcert verified compiler".
  73. ^Peyton Jones, Simon; Vytiniotis, Dimitrios;Weirich, Stephanie; Geoffrey Washburn (April 2006)."Simple unification-based type inference for GADTs".Icfp 2006:50–61.
  74. ^"OCaml Manual".caml.inria.fr. Retrieved2021-03-08.
  75. ^"Algebraic Data Types".Scala Documentation. Retrieved2021-03-08.
  76. ^Kennedy, Andrew; Russo, Claudio V. (October 2005).Generalized Algebraic Data Types and Object-Oriented Programming(PDF). OOPSLA. San Diego, California:ACM.doi:10.1145/1094811.1094814.ISBN 9781595930316. Archived fromthe original on 2006-12-29.
  77. ^Hughes, John."Why Functional Programming Matters"(PDF).Chalmers University of Technology.
  78. ^Purely functional data structures byChris Okasaki,Cambridge University Press, 1998,ISBN 0-521-66350-4
  79. ^L’orange, Jean Niklas."polymatheia - Understanding Clojure's Persistent Vector, pt. 1".Polymatheia. Retrieved2018-11-13.
  80. ^Michael Barr, Charles Well - Category theory for computer science.
  81. ^Newbern, J."All About Monads: A comprehensive guide to the theory and practice of monadic programming in Haskell". Retrieved2008-02-14.
  82. ^"Thirteen ways of looking at a turtle".fF# for fun and profit. Retrieved2018-11-13.
  83. ^Hartmanis, Juris; Hemachandra, Lane (1986). "Complexity classes without machines: On complete languages for UP".Automata, Languages and Programming. Lecture Notes in Computer Science. Vol. 226. Berlin, Heidelberg: Springer Berlin Heidelberg. pp. 123–135.doi:10.1007/3-540-16761-7_62.ISBN 978-3-540-16761-7. Retrieved2024-12-12.
  84. ^Paulson, Larry C. (28 June 1996).ML for the Working Programmer. Cambridge University Press.ISBN 978-0-521-56543-1. Retrieved10 February 2013.
  85. ^Spiewak, Daniel (26 August 2008)."Implementing Persistent Vectors in Scala".Code Commit. Archived fromthe original on 23 September 2015. Retrieved17 April 2012.
  86. ^"Which programs are fastest? | Computer Language Benchmarks Game". benchmarksgame.alioth.debian.org. Archived fromthe original on 2013-05-20. Retrieved2011-06-20.
  87. ^Igor Pechtchanski; Vivek Sarkar (2005). "Immutability specification and its applications".Concurrency and Computation: Practice and Experience.17 (5–6):639–662.doi:10.1002/cpe.853.S2CID 34527406.
  88. ^"An In-Depth Look at Clojure Collections".InfoQ. Retrieved2024-04-29.
  89. ^"References and Borrowing - The Rust Programming Language".doc.rust-lang.org. Retrieved2024-04-29.
  90. ^"Validating References with Lifetimes - The Rust Programming Language".doc.rust-lang.org. Retrieved2024-04-29.
  91. ^"Concurrent Collections (The Java™ Tutorials > Essential Java Classes > Concurrency)".docs.oracle.com. Retrieved2024-04-29.
  92. ^"Understanding The Actor Model To Build Non-blocking, High-throughput Distributed Systems - Scaleyourapp".scaleyourapp.com. 2023-01-28. Retrieved2024-04-29.
  93. ^Cesarini, Francesco; Thompson, Simon (2009).Erlang programming: a concurrent approach to software development (1st ed.). O'Reilly Media, Inc. (published 2009-06-11). p. 6.ISBN 978-0-596-55585-6.
  94. ^"Chapter 25. Profiling and optimization". Book.realworldhaskell.org. Retrieved2011-06-20.
  95. ^Berthe, Samuel (2024-04-29),samber/lo, retrieved2024-04-29
  96. ^"Go Wiki: Compiler And Runtime Optimizations - The Go Programming Language".go.dev. Retrieved2024-04-29.
  97. ^"Comparing Performance: Loops vs. Iterators - The Rust Programming Language".doc.rust-lang.org. Retrieved2024-04-29.
  98. ^Hartel, Pieter; Henk Muller; Hugh Glaser (March 2004)."The Functional C experience"(PDF).Journal of Functional Programming.14 (2):129–135.doi:10.1017/S0956796803004817.S2CID 32346900. Archived fromthe original(PDF) on 2011-07-19. Retrieved2006-05-28.;David Mertz."Functional programming in Python, Part 3".IBM developerWorks. Archived fromthe original on 2007-10-16. Retrieved2006-09-17.(Part 1,Part 2)
  99. ^"Functions — D Programming Language 2.0". Digital Mars. 30 December 2012.
  100. ^"Lua Unofficial FAQ (uFAQ)".
  101. ^"First-Class Functions in Go - The Go Programming Language".golang.org. Retrieved2021-01-04.
  102. ^Eich, Brendan (3 April 2008)."Popularity".
  103. ^van Rossum, Guido (2009-04-21)."Origins of Python's "Functional" Features". Retrieved2012-09-27.
  104. ^"functools — Higher order functions and operations on callable objects". Python Software Foundation. 2011-07-31. Retrieved2011-07-31.
  105. ^Skarsaune, Martin (2008).The SICS Java Port Project Automatic Translation of a Large Object Oriented System from Smalltalk to Java.
  106. ^Gosling, James."Closures".James Gosling: on the Java Road. Oracle. Archived fromthe original on 2013-04-14. Retrieved11 May 2013.
  107. ^Williams, Michael (8 April 2013)."Java SE 8 Lambda Quick Start".
  108. ^Bloch, Joshua (2008). "Item 15: Minimize Mutability".Effective Java (Second ed.). Addison-Wesley.ISBN 978-0321356680.
  109. ^"Object.freeze() - JavaScript | MDN".developer.mozilla.org. Retrieved2021-01-04.The Object.freeze() method freezes an object. A frozen object can no longer be changed; freezing an object prevents new properties from being added to it, existing properties from being removed, prevents changing the enumerability, configurability, or writability of existing properties, and prevents the values of existing properties from being changed. In addition, freezing an object also prevents its prototype from being changed. freeze() returns the same object that was passed in.
  110. ^Daniel Friedman; William Byrd; Oleg Kiselyov; Jason Hemann (2018).The Reasoned Schemer, Second Edition. The MIT Press.
  111. ^A. Casas, D. Cabeza, M. V. Hermenegildo. A Syntactic Approach to Combining Functional Notation, Lazy Evaluation and Higher-Order in LP Systems. The 8th International Symposium on Functional and Logic Programming (FLOPS'06), pages 142-162, April 2006.
  112. ^"How I do my Computing".stallman.org. Retrieved2024-04-29.
  113. ^Wakeling, David (2007)."Spreadsheet functional programming"(PDF).Journal of Functional Programming.17 (1):131–143.doi:10.1017/S0956796806006186.ISSN 0956-7968.S2CID 29429059.
  114. ^Peyton Jones, Simon;Burnett, Margaret;Blackwell, Alan (March 2003)."Improving the world's most popular functional language: user-defined functions in Excel". Archived fromthe original on 2005-10-16.
  115. ^Rodger, Richard (11 December 2017).The Tao of Microservices. Manning.ISBN 9781638351733.
  116. ^Piro, Christopher (2009).Functional Programming at Facebook. CUFP 2009. Archived fromthe original on 2009-10-17. Retrieved2009-08-29.
  117. ^"Sim-Diasca: a large-scale discrete event concurrent simulation engine in Erlang". November 2011. Archived fromthe original on 2013-09-17. Retrieved2011-11-08.
  118. ^1 million is so 2011Archived 2014-02-19 at theWayback Machine // WhatsApp blog, 2012-01-06: "the last important piece of our infrastracture is Erlang"
  119. ^Momtahan, Lee (2009).Scala at EDF Trading: Implementing a Domain-Specific Language for Derivative Pricing with Scala. CUFP 2009. Archived fromthe original on 2009-10-17. Retrieved2009-08-29.
  120. ^Graham, Paul (2003)."Beating the Averages". Retrieved2009-08-29.
  121. ^Sims, Steve (2006).Building a Startup with Standard ML(PDF). CUFP 2006. Retrieved2009-08-29.
  122. ^Laurikari, Ville (2007).Functional Programming in Communications Security. CUFP 2007. Archived fromthe original on 2010-12-21. Retrieved2009-08-29.
  123. ^Lorimer, R. J. (19 January 2009)."Live Production Clojure Application Announced".InfoQ.
  124. ^Bugnion, Pascal (2016).Scala for Data Science (1st ed.).Packt.ISBN 9781785281372.
  125. ^"Why developers like ClojureScript".StackShare. Retrieved2024-04-29.
  126. ^Herrick, Justin (2024-04-29),jah2488/elm-companies, retrieved2024-04-29
  127. ^"Why developers like PureScript".StackShare. Retrieved2024-04-29.
  128. ^Team, Editorial (2019-01-08)."ALLEGRO - all you need to know about the best Polish online marketplace".E-commerce Germany News. Retrieved2024-04-29.
  129. ^"Websites using Phoenix Framework - Wappalyzer".www.wappalyzer.com. Retrieved2024-04-29.
  130. ^"Functional Programming: 2019-2020". University of Oxford Department of Computer Science. Retrieved28 April 2020.
  131. ^"Programming I (Haskell)". Imperial College London Department of Computing. Retrieved28 April 2020.
  132. ^ab"Computer Science BSc - Modules". Retrieved28 April 2020.
  133. ^abAbelson, Hal;Sussman, Gerald Jay (1985)."Preface to the Second Edition".Structure and Interpretation of Computer Programs (2 ed.). MIT Press.Bibcode:1985sicp.book.....A.
  134. ^John DeNero (Fall 2019)."Computer Science 61A, Berkeley". Department of Electrical Engineering and Computer Sciences, Berkeley. Retrieved2020-08-14.
  135. ^Emmanuel Schanzer of Bootstrap interviewed on the TV showTriangulation on theTWiT.tv network
  136. ^"Why Scheme for Introductory Programming?".home.adelphi.edu. Retrieved2024-04-29.
  137. ^Staff, IMACS (2011-06-03)."What Is Scheme & Why Is it Beneficial for Students?".IMACS – Making Better Thinkers for Life. Retrieved2024-04-29.

Further reading

[edit]

External links

[edit]
Listen to this article (28 minutes)
Spoken Wikipedia icon
This audio file was created from a revision of this article dated 25 August 2011 (2011-08-25), and does not reflect subsequent edits.
(Audio help ·More spoken articles)
Imperative
Structured
Object-oriented
Declarative
Functional
Dataflow
Logic
Domain-
specific
language

(DSL)
Concurrent,
parallel
Metaprogramming
Separation
of concerns
Comparisons/Lists
Level
Generation
International
National
Other
Retrieved from "https://en.wikipedia.org/w/index.php?title=Functional_programming&oldid=1336970748"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2026 Movatter.jp