请输入您要查询的百科知识:

 

词条 Functional programming
释义

  1. History

  2. Concepts

      First-class and higher-order functions    Pure functions    Recursion    Strict versus non-strict evaluation    Type systems    Referential transparency    Functional programming in non-functional languages   Data structures 

  3. Comparison to imperative programming

      Simulating state    Efficiency issues    Coding styles    Java    OCAML   PHP  Python  Wolfram Language  Haskell  Perl 6  Erlang   Elixir   Lisp  Clojure  Kotlin   Swift   JavaScript  SequenceL  Ruby  Tcl  Scala 

  4. Use in industry

  5. In education

  6. See also

  7. References

  8. Further reading

  9. External links

{{for|subroutine-oriented programming|Procedural programming}}{{Programming paradigms}}

In computer science, functional programming is a programming paradigm—a style of building the structure and elements of computer programs—that treats computation as the evaluation of mathematical functions and avoids changing-state and mutable data. It is a declarative programming paradigm, which means programming is done with expressions or declarations[1] instead of statements. Functional code is idempotent, the output value of a function depends only on the arguments that are passed to the function, so calling a function f twice with the same value for an argument x produces the same result f(x) each time; this is in contrast to procedures depending on a local or global state, which may produce different results at different times when called with the same arguments but a different program state. Eliminating side effects, i.e., changes in state that do not depend on the function inputs, can make it much easier to understand and predict the behavior of a program, which is one of the key motivations for the development of functional programming.

Functional programming has its origins in lambda calculus, a formal system developed in the 1930s to investigate computability, the Entscheidungsproblem, function definition, function application, and recursion. Many functional programming languages can be viewed as elaborations on the lambda calculus. Another well-known declarative programming paradigm, logic programming, is based on relations.[2]

In contrast, imperative programming changes state with commands in the source code, the simplest example being assignment. Imperative programming does have subroutine functions, but these are not functions in the mathematical sense. They can have side effects that may change the value of program state. Functions without return values therefore make sense. Because of this, they lack referential transparency, i.e., the same language expression can result in different values at different times depending on the state of the executing program.[2]

Functional programming languages have largely been emphasized in academia rather than in commercial software development. However, prominent programming languages that support functional programming such as Common Lisp, Scheme,[5][6][7] Clojure, Wolfram Language[3][9] (also known as Mathematica), Racket,[10] Erlang,[11][12][13] OCaml,[14][15] Haskell,[16][17] and F#[4][5] have been used in industrial and commercial applications by a wide variety of organizations. JavaScript, one of the world's most widely distributed languages,[6][7][8] has the properties of a dynamically typed functional language,[7] in addition to imperative and object-oriented paradigms. Functional programming is also key to some languages that have found success in specific domains, like R (statistics),[24][25] J, K and Q from Kx Systems (financial analysis), XQuery/XSLT (XML),[26][27] and Opal. Widespread domain-specific declarative languages like SQL and Lex/Yacc use some elements of functional programming, especially in eschewing mutable values.[28]

Programming in a functional style can also be accomplished in languages that are not specifically designed for functional programming. For example, the imperative Perl programming language has been the subject of a book describing how to apply functional programming concepts.[9] This is also true of the PHP programming language.[10] C++11, Java 8, and C# 3.0 all added constructs to facilitate the functional style. The Julia language also offers functional programming abilities. An interesting case is that of Scala[31] – it is frequently written in a functional style, but the presence of side effects and mutable state place it in a grey area between imperative and functional languages.

History

Lambda calculus provides a theoretical framework for describing functions and their evaluation. It is a mathematical abstraction rather than a programming language—but it forms the basis of almost all current functional programming languages. An equivalent theoretical formulation, combinatory logic, is commonly perceived as more abstract than lambda calculus and preceded it in invention. Combinatory logic and lambda calculus were both originally developed to achieve a clearer approach to the foundations of mathematics.[11]

An early functional-flavored language was Lisp, developed in the late 1950s for the IBM 700/7000 series scientific computers by John McCarthy while at Massachusetts Institute of Technology (MIT).[12] Lisp first introduced many paradigmatic features of functional programming, though early Lisps were multi-paradigm languages, and incorporated support for numerous programming styles as new paradigms evolved. Later dialects, such as Scheme and Clojure, and offshoots such as Dylan and Julia, sought to simplify and rationalise Lisp around a cleanly functional core, while Common Lisp was designed to preserve and update the paradigmatic features of the numerous older dialects it replaced.[13]

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

Kenneth E. Iverson developed APL in the early 1960s, described in his 1962 book A Programming Language ({{ISBN|9780471430148}}). APL was the primary influence on John Backus's FP. In the early 1990s, Iverson and Roger Hui created J. In the mid-1990s, Arthur Whitney, who had previously worked with Iverson, created K, which is used commercially in financial industries along with its descendant Q.

John Backus presented FP in his 1977 Turing Award lecture "Can Programming Be Liberated From the von Neumann Style? A Functional Style and its Algebra of Programs".[15] 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 the principle of compositionality.{{Citation needed|reason=I dont completely agree with this interpretation of John Backus definition of functional programs, which I feel is widely misunderstood. As he is very sadly no longer alive we can't ask him, but a reference for this interpretation, especially if it includes a justification, would be very beneficial.|date=February 2017}} Backus's paper popularized research into functional programming, though it emphasized function-level programming rather than the lambda-calculus style now associated with functional programming.

The 1973 language ML was created by Robin Milner at the University of Edinburgh, and David Turner developed the language SASL at the University of St Andrews. Also in Edinburgh in the 1970s, Burstall and Darlington developed the functional language NPL.[16] NPL was based on Kleene Recursion Equations and was first introduced in their work on program transformation.[17] Burstall, MacQueen and Sannella then incorporated the polymorphic type checking from ML to produce the language Hope.[18] ML eventually developed into several dialects, the most common of which are now OCaml and Standard ML.

Meanwhile, the development of Scheme, a simple lexically scoped and (impurely) functional dialect of Lisp, as described in the influential Lambda Papers and the classic 1985 textbook Structure and Interpretation of Computer Programs, brought awareness of the power of functional programming to the wider programming-languages community.

In the 1980s, Per Martin-Löf developed intuitionistic type theory (also called constructive type theory), which associated functional programs with constructive proofs expressed as dependent types. This led to new approaches to interactive theorem proving and has influenced the development of subsequent functional programming languages.{{citation needed|date=July 2018}} The lazy functional language, Miranda, developed by David Turner, initially appeared in 1985 and had a strong influence on Haskell. With Miranda being proprietary, Haskell began with a consensus in 1987 to form an open standard for functional programming research; implementation releases have been ongoing since 1990.

More recently it has found use in niches such as parametric CAD courtesy of the OpenSCAD language built on the CSG geometry framework, although its inability to reassign values has led to much confusion among users who are often unfamiliar with Functional programming as a concept.[19]

Functional programming continues to be used in commercial settings.[20][21][22][23]

Concepts

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

First-class and higher-order functions

{{main|First-class function|Higher-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 the differential operator , which returns the derivative of a function .

Higher-order functions are closely related to first-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 that describes 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 enable partial application or currying, 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, the successor function as the addition operator partially applied to the natural number one.

Pure functions

Pure functions (or expressions) have no side 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 called referential transparency), i.e., calling the pure function again with the same arguments returns the same result. (This can enable caching optimizations such as memoization.)
  • If there is no data dependency between two pure expressions, their order can be reversed, or they can be performed in parallel and they cannot interfere with one another (in other terms, the evaluation of any pure expression is thread-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, using deforestation).

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 as gcc, add extra keywords for a programmer to explicitly mark external functions as pure, to enable such optimizations. Fortran 95 also lets functions be designated pure.[25] C++11 added constexpr keyword with similar semantics.

Recursion

{{Main|Recursion (computer science)}}

Iteration (looping) in functional languages is usually accomplished via recursion. Recursive functions invoke themselves, letting an operation be repeated until it reaches the base case. Although some recursion requires maintaining a stack, tail recursion can be recognized and optimized by a compiler into the same code used to implement iteration in imperative languages. The Scheme language standard requires implementations to recognize and optimize tail recursion. Tail recursion optimization can be implemented by transforming the program into continuation passing style during compiling, among other approaches.

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

Most general purpose functional programming languages allow unrestricted recursion and are Turing complete, which makes the halting problem undecidable, can cause unsoundness of equational reasoning, and generally requires the introduction of inconsistency into the logic expressed by the language's type system. Some special purpose languages such as Coq allow only well-founded recursion and are strongly normalizing (nonterminating computations can be expressed only with infinite streams of values called codata). 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 called total functional programming.[26]

Strict versus non-strict evaluation

{{Main|Evaluation strategy}}

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

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 is graph reduction.[27] Lazy evaluation is used by default in several pure functional languages, including Miranda, Clean, and Haskell.

{{Harvnb|Hughes|1984}} argues for lazy evaluation as a mechanism for improving program modularity through separation of concerns, by easing independent implementation of producers and consumers of data streams.[28] Launchbury 1993 describes some difficulties that lazy evaluation introduces, particularly in analyzing a program's storage requirements, and proposes an operational semantics to aid in such analysis.[29] Harper 2009 proposes including both strict and lazy evaluation in the same language, using the language's type system to distinguish them.[30]

Type systems

Especially since the development of Hindley–Milner type inference in the 1970s, functional programming languages have tended to use typed lambda calculus, rejecting all invalid programs at compilation time and risking false positive errors, as opposed to the untyped lambda calculus, that accepts all valid programs at compilation time and risks false negative errors, used in Lisp and its variants (such as Scheme), though they reject all invalid programs at runtime, when the information is enough to not reject valid programs. The use of algebraic datatypes 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 like test-driven development, while type inference frees the programmer from the need to manually declare types to the compiler in most cases.

Some research-oriented functional languages such as Coq, Agda, Cayenne, and Epigram are based on intuitionistic type theory, which lets types depend on terms. Such types are called dependent types. These type systems do not have decidable type inference and are difficult to understand and program with.[31][32][33][34] But dependent types can express arbitrary propositions in predicate logic. Through the Curry–Howard isomorphism, then, well-typed programs in these languages become a means of writing formal mathematical proofs from which a compiler can generate certified code. While these languages are mainly of interest in academic research (including in formalized mathematics), they have begun to be used in engineering as well. Compcert is a compiler for a subset of the C programming language that is written in Coq and formally verified.[35]

A limited form of dependent types called generalized 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.[36] GADT's are available in the Glasgow Haskell Compiler, in OCaml (since version 4.00) and in Scala (as "case classes"), and have been proposed as additions to other languages including Java and C#.[37]

Referential transparency

{{Main|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.[38]

Consider C assignment statement x = x * 10, this changes the value assigned to the variable x. Let us say that the initial value of x was 1, then two consecutive evaluations of the variable x yields 10 and 100 respectively. Clearly, replacing x = x * 10 with either 10 or 100 gives a program with different meaning, and so the expression is not referentially transparent. In fact, assignment statements are never referentially transparent.

Now, consider another function such as int plusone(int x) {return x+1;} is transparent, as it does not implicitly change the input x and thus has no such side effects.

Functional programs exclusively use this type of function and are therefore referentially transparent.

Functional programming in non-functional languages

It is possible to use a functional style of programming in languages that are not traditionally considered functional languages.[39] For example, both D[40] and Fortran 95[25] explicitly support pure functions.

JavaScript, Lua[41] and Python had first class functions from their inception.[42] Python had support for "lambda", "map", "reduce", and "filter" in 1994, as well as closures in Python 2.2,[43] though Python 3 relegated "reduce" to the functools standard library module.[44] First-class functions have been introduced into other mainstream languages such as PHP 5.3, Visual Basic 9, C# 3.0, and C++11.{{citation needed|date=April 2015}}

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.

In Java, anonymous classes can sometimes be used to simulate closures;[45] however, anonymous classes are not always proper replacements to closures because they have more limited capabilities.[46] Java 8 supports lambda expressions as a replacement for some anonymous classes.[47] However, the presence of checked exceptions in Java can make functional programming inconvenient, because it can be necessary to catch checked exceptions and then rethrow them—a problem that does not occur in other JVM languages that do not have checked exceptions, such as Scala.{{Citation needed|date=March 2014}}

In C#, 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#.

Many object-oriented design patterns are expressible in functional programming terms: for example, the strategy pattern simply dictates use of a higher-order function, and the visitor pattern roughly corresponds to a catamorphism, or fold.

Similarly, the idea of immutable data from functional programming is often included in imperative programming languages,[48] for example the tuple in Python, which is an immutable array.

Data structures

{{main|Purely functional data structure}}

Purely functional data structures are often represented in a different way than their imperative counterparts.[49] For example, the array with constant access and update times is a basic component of most imperative languages, and many imperative data-structures, such as the hash table and binary heap, are based on arrays. Arrays can be replaced by maps or random access lists, which admit purely functional implementation, but have logarithmic access and update times. Purely functional data structures have persistence, 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.[50]

Comparison to imperative programming

Functional programming is very different from imperative programming. The most significant differences stem from the fact that functional programming avoids side 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.

Simulating state

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 language Haskell implements them using monads, derived from category theory. 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).[51]

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.[52]

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|date=July 2018}}

Alternative methods such as Hoare logic and uniqueness have been developed to track side effects in programs. Some modern research languages use effect systems to make the presence of side effects explicit.{{citation needed|date=July 2018}}

Efficiency issues

Functional programming languages are typically less efficient in their use of CPU and memory than imperative languages such as C and Pascal.[53] This is related to the fact that some mutable data structures like arrays have a very straightforward implementation using present hardware (which is a highly evolved Turing machine). Flat arrays may be accessed very efficiently with deeply pipelined CPUs, prefetched efficiently through caches (with no complex pointer 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).[76] However, such slowdowns are not universal. For programs that perform intensive numerical computations, functional languages such as OCaml and Clean are only slightly slower than C according to The Computer Language Benchmarks Game.[54] For programs that handle large matrices and multidimensional databases, array functional languages (such as J and K) 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 for inline expansion.[55]

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 introduce memory leaks if used improperly). Launchbury 1993[29] discusses theoretical issues related to memory leaks from lazy evaluation, and O'Sullivan et al. 2008[56] 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|date=June 2014}}.

Coding styles

{{unreferenced section|date=July 2013}}

Imperative programs have the environment and a sequence of steps manipulating the environment. Functional programs have an expression that is successively substituted until it reaches normal form. An example illustrates this with different solutions to the same programming goal (calculating Fibonacci numbers).

Java

Get Fibonacci number

    public UnaryOperator fib(Integer acc, Integer next) {        return x -> {            if(x > 0) {                return fib(acc + next, acc).apply(--x);            }            else {                return acc;            }        };    }    System.out.println(fib(0, 1).apply(5));

OCAML

Printing first 10 Fibonacci numbers

let fib_list =


| 0 -> []
| x -> first::fib_list_aux second (first+second) (x-1)
  in  fib_list_aux 0 1

let () = List.iter (Printf.printf "%d ") (fib_list 10)

PHP

Printing first 10 Fibonacci numbers, using function

function fib(int $n) : int {

}

for ($i = 0; $i <= 10; $i++) echo fib($i) . PHP_EOL;

Printing first 10 Fibonacci numbers, using closure

$fib = function(int $n) use(&$fib) : int {

};

for ($i = 0; $i <= 10; $i++) echo $fib($i) . PHP_EOL;

Printing a list with first 10 Fibonacci numbers, with generators

function fib(int $n) {

    yield 0; $n--;    yield 1; $n--;    $second = ($first = 2) + 1;    while ($n-- !== 0) {        yield $first;        [$second, $first] = [$first + $second, $second];    }

}

$fibo = fib(10);

foreach ($fibo as $value) {

}

Python

Printing a list of the first 10 Fibonacci numbers, iterative

def fibonacci(n, first=0, second=1):

    for _ in range(n):        print(first) # side-effect        first, second = second, first + second # assignment

fibonacci(10)

Printing a list of the first 10 Fibonacci numbers, functional expression style

fibonacci = (lambda n, first=0, second=1:

    "" if n == 0 else    str(first) + "\" + fibonacci(n - 1, second, first + second))

print(fibonacci(10), end="")

Printing a list of the first 10 Fibonacci numbers, with generators

def fibonacci(n, first=0, second=1):

    for _ in range(n):        yield first        first, second = second, first + second # assignment

print(list(fibonacci(10)))

Printing a list of the first 10 Fibonacci numbers, functional expression style

fibonacci = (lambda n, first=0, second=1:

    [] if n == 0 else    [first] + fibonacci(n - 1, second, first + second))

print(fibonacci(10))

Printing a list of the first 10 Fibonacci numbers, recursive style

def fibonacci(n):

    if n <= 1:        return n    else:        return fibonacci(n-2) + fibonacci(n-1)

for n in range(10):

Wolfram Language

Printing first 10 Fibonacci numbers,functional expression style[1]

Table[Fibonacci[n],{n,10}]

Haskell

Printing first 10 Fibonacci numbers, functional expression style[1]

fibonacci_aux = \ first second->

    if n == 0 then "" else    show first ++ "\" ++ fibonacci_aux (n - 1) second (first + second)

fibonacci = \-> fibonacci_aux n 0 1

main = putStr (fibonacci 10)

Printing a list with first 10 Fibonacci numbers, functional expression style[1]

fibonacci_aux = \ first second->

    if n == 0 then [] else    [first] ++ fibonacci_aux (n - 1) second (first + second)

fibonacci = \-> fibonacci_aux n 0 1

main = putStrLn (show (fibonacci 10))

Printing the 11th Fibonacci number, functional expression style[1]

fibonacci = \-> if n == 0 then 0

                 else if n == 1 then 1                      else fibonacci(n - 1) + fibonacci(n - 2)

main = putStrLn (show (fibonacci 10))

Printing the 11th Fibonacci number, functional expression style,[1] tail recursive

fibonacci_aux = \ first second->

    if n == 0 then first else    fibonacci_aux (n - 1) second (first + second)

fibonacci = \-> Fibonacci_aux n 0 1

main = putStrLn (show (fibonacci 10))

Printing the 11th Fibonacci number, functional expression style[1] with recursive lists

fibonacci_aux = \\first second-> first : fibonacci_aux second (first + second)

select = \ zs-> if n==0 then head zs

fibonacci = \-> select n (fibonacci_aux 0 1)

main = putStrLn (show (fibonacci 10))

Printing the 11th Fibonacci number, functional expression style[1] with primitives for recursive lists

fibonacci_aux = \\first second-> first : fibonacci_aux second (first + second)

fibonacci = \-> (fibonacci_aux 0 1) !! n

main = putStrLn (show (fibonacci 10))

Printing the 11th Fibonacci number, functional expression style[1] with primitives for recursive lists, more concisely

fibonacci_aux = 0:1:zipWith (+) fibonacci_aux (tail fibonacci_aux)

fibonacci = \-> fibonacci_aux !! n

main = putStrLn (show (fibonacci 10))

Printing the 11th Fibonacci number, functional declaration style[1]

fibonacci 0 = 0

fibonacci 1 = 1

fibonacci n = fibonacci (n-1) + fibonacci (n-2)

main = putStrLn (show (fibonacci 10))

Printing the 11th Fibonacci number, functional declaration style,[1] tail recursive

fibonacci_aux 0 first _ = first

fibonacci_aux n first second = fibonacci_aux (n - 1) second (first + second)

fibonacci n = fibonacci_aux n 0 1

main = putStrLn (show (fibonacci 10))

Printing the 11th Fibonacci number, functional declaration style, using lazy infinite lists and primitives

fibs = 1 : 1 : zipWith (+) fibs (tail fibs)

-- an infinite list of the fibonacci numbers-- fibs is defined in terms of fibs

fibonacci = (fibs !!)

main = putStrLn $ show $ fibonacci 11

Printing the first 10 Fibonacci numbers, list comprehension (generator) style

fibs = [0, 1] ++ [(fibs !! x) + (fibs !! (x + 1)) | x <- [0..]]

main = putStrLn $ show $ take 10 fibs

Perl 6

As influenced by Haskell and others, Perl 6 has several functional and declarative approaches to problems. For example, you can declaratively build up a well-typed recursive version (the type constraints are optional) through signature pattern matching:

  1. define constraints that are common to all candidates

proto fib ( UInt:D \ --> UInt:D ) {*}

multi fib ( 0 --> 0 ) { }

multi fib ( 1 --> 1 ) { }

multi fib ( \ ) {

}

for ^10 -> $n { say fib($n) }

An alternative to this is to construct a lazy iterative sequence, which appears as an almost direct illustration of the sequence:

my @fib = 0, 1, *+* ... *; # Each additional entry is the sum of the previous two

say @fib[^10]; # Display the first 10 entries

Erlang

Erlang is a functional, concurrent, general-purpose programming language. A Fibonacci algorithm implemented in Erlang (Note: This is only for demonstrating the Erlang syntax. Use other algorithms for fast performance[57]):

-module(fib). % This is the file 'fib.erl', the module and the filename must match-export([fib/1]). % This exports the function 'fib' of arity 1

fib(1) -> 1; % If 1, then return 1, otherwise (note the semicolon ; meaning 'else')

fib(2) -> 1; % If 2, then return 1, otherwise

fib(N) -> fib(N - 2) + fib(N - 1).

Elixir

Elixir is a functional, concurrent, general-purpose programming language that runs on the Erlang virtual machine (BEAM).

The Fibonacci function can be written in Elixir as follows:

defmodule Fibonacci do

  def fib(0), do: 0  def fib(1), do: 1  def fib(n), do: fib(n-1) + fib(n-2)

end

Lisp

The Fibonacci function can be written in Common Lisp as follows:

(defun fib (n &optional (a 0) (b 1))

  (if (= n 0)      a      (fib (- n 1) b (+ a b))))

or

(defun fib (n)

  (if (or (= n 0) (= n 1))      n      (+ (fib (- n 1)) (fib (- n 2)))))

The program can then be called as

(fib 10)

Clojure

The Fibonacci function can be written in Clojure as follows:

(defn fib

  [n]  (loop [a 0 b 1 i n]    (if (zero? i)      a      (recur b (+ a b) (dec i)))))

The program can then be called as

(fib 7)

Explicitly using "lazy-seq", the infinite sequence of Fibonacci numbers can be defined recursively.

; lazy infinite sequence

(def fibs (cons 0 (cons 1 (lazy-seq (map +' fibs (rest fibs))))))

; list of first 10 Fibonacci numbers taken from infinite sequence

(take 10 fibs)

Kotlin

The Fibonacci function can be written in Kotlin as follows:

fun fib(x: Int): Int = if (x in 0..1) x else fib(x - 1) + fib(x - 2)

The program can then be called as

fib(7)

Swift

The Fibonacci function can be written in Swift as follows:

func fib(_ x: Int) -> Int {

    if x == 0 || x == 1 {        return x    } else {        return fib(x - 1) + fib(x - 2)    }

}

The function can then be called as

fib(7)

JavaScript

The Fibonacci function can be written in JavaScript as follows:

const fib = (x) => (function sub_fib(a, b) { return x-- > 0 ? sub_fib(b, a+b) : a})(0,1)

or

const sub_fib = (x, a, b) => x > 0 ? sub_fib(x-1, b, a+b) : a

const fib = (x) => sub_fib(x, 0,1)

SequenceL

SequenceL is a functional, concurrent, general-purpose programming language. The Fibonacci function can be written in SequenceL as follows:

fib(n) := n when n < 2 else

The function can then be called as

fib(10)

To reduce the memory consumed by the call stack when computing a large Fibonacci term, a tail-recursive version can be used. A tail-recursive function is implemented by the SequenceL compiler as a memory-efficient looping structure:

fib(n) := fib_Helper(0, 1, n);

fib_Helper(prev, next, n) :=

    prev when n < 1 else    next when n = 1 else    fib_Helper(next, next + prev, n - 1);

Ruby

The Fibonacci function can be written in ruby using lambdas as follows:

Tcl

The Fibonacci function can be written in Tcl as a recursive function as follows:

proc fibo {x} {

}

Scala

The Fibonacci function can be written in Scala in several ways:

Imperative "Java" style

def fibImp(n: Int): Int = {

  var i = 0  var j = 1
  for (k <- 0 until n) {    val l = i + j    i = j    j = l  }  i

}

Recursive style, slow

def fibRec(n: Int): Int = n match {

  case 0 => 0  case 1 => 1  case _ => fibRec(n - 1) + fibRec(n - 2)

}

Recursive style with tail call optimization, fast

def fibTailRec(n: Int): Int = {

  @tailrec  def fib(i: Int, v: Int, vNext: Int): Int =    if(i == n) v    else fib(i + 1, vNext, v + vNext)  fib(0, 0, 1)

}

Using Scala streams

val fibStream: Stream[Int] =

Use in industry

Functional programming has long been popular in academia, but with few industrial applications.[58]{{rp|page 11}} However, recently several prominent functional programming languages have been used in commercial or industrial systems. For example, the Erlang programming language, which was developed by the Swedish company Ericsson in the late 1980s, was originally used to implement fault-tolerant telecommunications systems.[12] It has since become popular for building a range of applications at companies such as Nortel, Facebook, Électricité de France and WhatsApp.[11][13][59][97][60] The Scheme dialect of Lisp was used as the basis for several applications on early Apple Macintosh computers,[5] and has more recently been applied to problems such as training simulation software[6] and telescope control.[7] OCaml, which was introduced in the mid-1990s, has seen commercial use in areas such as financial analysis,[14] driver verification, industrial robot programming, and static analysis of embedded software.[15] Haskell, though initially intended as a research language,[17] has also been applied by a range of companies, in areas such as aerospace systems, hardware design, and web programming.[16][17]

Other functional programming languages that have seen use in industry include Scala,[61] F#,[4][5] (both being functional-OO hybrids with support for both purely functional and imperative programming) Wolfram Language,[3] Lisp,[62] Standard ML[63][64] and Clojure.[65]

In education

Functional programming is being used as a method to teach problem solving, algebra and geometric concepts.[66]

It has also been used as a tool to teach classical mechanics in Structure and Interpretation of Classical Mechanics.

See also

{{Portal|Computer programming}}
  • Purely functional programming
  • Comparison of programming paradigms
  • Eager evaluation
  • List of functional programming topics
  • Nested function
  • Inductive functional programming
  • Functional reactive programming

References

1. ^10 {{cite web|url=https://wiki.haskell.org/Declaration_vs._expression_style#Expression_style|title=Declaration vs. expression style - HaskellWiki|publisher=}}
2. ^{{cite journal | last = Hudak | first = Paul | authorlink = Paul Hudak | title = Conception, evolution, and application of functional programming languages | journal = ACM Computing Surveys|volume=21|issue=3 | pages = 359–411 |date=September 1989 | url = http://www.dbnet.ece.ntua.gr/~adamo/languages/books/p359-hudak.pdf|doi=10.1145/72551.72554 }}
3. ^{{cite web | title = Wolfram Language Guide: Functional Programming | url = http://reference.wolfram.com/language/guide/FunctionalProgramming.html | year = 2015 | accessdate = 2015-08-24 }}
4. ^{{cite conference | last = Mansell | first = Howard | title = Quantitative Finance in F# | url = http://cufp.galois.com/2008/abstracts.html#MansellHoward | year = 2008 | conference = CUFP 2008 | accessdate = 2009-08-29 }}
5. ^{{cite conference | last = Peake | first = Alex | title = The First Substantial Line of Business Application in F# | url = http://cufp.galois.com/2009/abstracts.html#AlexPeakeAdamGranicz | year = 2009 | conference = CUFP 2009 | accessdate = 2009-08-29 }}
6. ^{{cite web | title = The 15 most popular computer languages, according to the Facebook for programmers | url = http://www.businessinsider.com/github-most-popular-coding-languages-2016-9/ | year = 2016 | accessdate = 2017-07-31}}
7. ^{{cite web | title = JavaScript is the World's Dominant Programming Language | url = https://arc.applause.com/2016/03/22/javascript-is-the-worlds-dominant-programming-language/ | year = 2016 | accessdate = 2017-07-31}}
8. ^{{cite web |title=Concepts of Functional Programming in Javascript |url=https://www.byteconf.com/blog/an-introduction-to-the-basic-principles-of-functional-programming-in-javascript | year = 2018 | accessdate=2019-03-07}}
9. ^{{cite book | last = Dominus | first = Mark J. | authorlink = Mark Jason Dominus | title = Higher-Order Perl |publisher=Morgan Kaufmann | year = 2005 |isbn = 978-1-55860-701-9 | title-link = Higher-Order Perl }}
10. ^{{cite book | last = Holywell | first = Simon | title = Functional Programming in PHP | publisher = php[architect] | year = 2014 | isbn = 9781940111056}}
11. ^{{cite book|author1=Haskell Brooks Curry|author2=Robert Feys|title=Combinatory Logic|url=https://books.google.com/books?id=fEnuAAAAMAAJ|accessdate=10 February 2013|year=1958|publisher=North-Holland Publishing Company}}
12. ^{{cite journal | first = John | last = McCarthy | authorlink = John McCarthy (computer scientist) | title = History of Lisp | journal = In ACM/SIGPLAN History of Programming Languages Conference | pages = 217–223 |date=June 1978 | url = http://citeseer.ist.psu.edu/mccarthy78history.html|doi=10.1145/800025.808387 }}
13. ^{{cite book|author1=Guy L. Steele |author2=Richard P. Gabriel |title=The Evolution of Lisp |journal= In ACM/SIGPLAN Second History of Programming Languages |pages= 233–330 |date=February 1996 |url=http://dreamsongs.com/Files/HOPL2-Uncut.pdf |doi= 10.1145/234286.1057818 |isbn=978-0-201-89502-5 }}
14. ^The memoir of Herbert A. Simon (1991), Models of My Life pp.189-190 {{ISBN|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 writing Logic Theorist, a program that proved theorems from Principia Mathematica automatically. To accomplish this, they had to invent a language and a paradigm that, viewed retrospectively, embeds functional programming.
15. ^{{cite web|url=http://worrydream.com/refs/Backus-CanProgrammingBeLiberated.pdf|title=Can Programming Be Liberated from the von Neumann Style? A Functional Style and Its Algebra of Programs}}
16. ^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)
17. ^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)
18. ^R.M. Burstall, D.B. MacQueen and D.T. Sannella. HOPE: an experimental applicative language. Proc. 1980 LISP Conference, Stanford, 136–143 (1980).
19. ^{{cite web|url = http://forum.openscad.org/Make-discovering-assign-easier-td10964.html|website = OpenSCAD|title =Make discovering assign() easier!}}
20. ^{{cite web |url=https://www.forbes.com/sites/quora/2018/07/27/why-purely-functional-programming-is-a-great-idea-with-a-misleading-name/#748aa74e20e9 |title=Why Purely Functional Programming Is A Great Idea With A Misleading Name |author=Quora |date=July 27, 2018 |publisher=Forbes |access-date=}}
21. ^{{cite web |url=https://arstechnica.com/gadgets/2018/03/developers-love-trendy-new-languages-but-earn-more-with-functional-programming/ |title=Developers love trendy new languages but earn more with functional programming |author=Peter Bright |date=March 13, 2018 |publisher=Ars Technica |access-date=}}
22. ^{{cite web |url=https://www.computing.co.uk/ctg/analysis/3003123/the-slow-but-steady-rise-of-functional-programming |title=The stealthy rise of functional programming |author=John Leonard |date=January 24, 2017 |publisher=Computing |access-date=}}
23. ^{{cite web |url=https://www.infoworld.com/article/3190185/software/is-functional-programming-better-for-your-startup.html |title=Is functional programming better for your startup? |author=Leo Cheung |date=May 9, 2017 |publisher=InfoWorld |access-date=}}
24. ^{{cite web | url = http://byte.com/art/9408/sec11/art1.htm | archiveurl = https://web.archive.org/web/20060827094123/http://byte.com/art/9408/sec11/art1.htm | archivedate = 2006-08-27 | title = Functional Programming Comes of Age | author = Dick Pountain | work=BYTE.com (August 1994) | accessdate = August 31, 2006 }}
25. ^{{cite journal | title = ISO/IEC JTC 1/SC 22/WG5/N2137 | publisher = International Organization for Standardization | date = July 6, 2017 | url = https://isotc.iso.org/livelink/livelink/19089292/N2137.pdf.flv?func=sspndocuments.Fetch&nodeid=19089292&viewType=1}}
26. ^{{cite journal | last = Turner | first = D.A.|author-link=David Turner (computer scientist) | title = Total Functional Programming | journal = Journal of Universal Computer Science|volume=10| date = 2004-07-28 | pages = 751–768 | url = http://www.jucs.org/jucs_10_7/total_functional_programming|doi=10.3217/jucs-010-07-0751|issue=7}}
27. ^The Implementation of Functional Programming Languages. Simon Peyton Jones, published by Prentice Hall, 1987
28. ^{{cite web |url=http://www.cse.chalmers.se/~rjmh/Papers/whyfp.html |title=Why Functional Programming Matters |authorlink=John Hughes (computer scientist) |first=John |last=Hughes |year=1984 |ref=harv}}
29. ^{{cite journal | author = John Launchbury | authorlink=John_Launchbury | title = A Natural Semantics for Lazy Evaluation | year = 1993 |citeseerx = 10.1.1.35.2016}}
30. ^{{cite book | url = http://www.cs.cmu.edu/~rwh/plbook/book.pdf | archiveurl = https://web.archive.org/web/20160407095249/http://www.cs.cmu.edu/~rwh/plbook/book.pdf | archivedate = 2016-04-07 | title = Practical Foundations for Programming Languages | author = Robert W. Harper | authorlink=Robert_Harper_(computer_scientist) | year = 2009 }}
31. ^{{cite journal |last=Huet |first=Gérard P. |date=1973 |title=The Undecidability of Unification in Third Order Logic |journal=Information and Control |doi=10.1016/s0019-9958(73)90301-x |volume=22 |issue=3 |pages=257–267 }}
32. ^{{cite thesis |type=Ph.D. |last=Huet |first=Gérard |date=Sep 1976 |title=Resolution d'Equations dans des Langages d'Ordre 1,2,...ω |language=French |publisher=Universite de Paris VII}}
33. ^{{cite book |last=Huet |first=Gérard |date=2002 |editor1-last=Carreño |editor1-first=V. |editor2-last=Muñoz |editor2-first=C. |editor3-last=Tahar |editor3-first=S. |chapter=Higher Order Unification 30 years later |title=Proceedings, 15th International Conference TPHOL |volume=2410 |pages=3–12 |publisher=Springer |series=LNCS |chapter-url=http://pauillac.inria.fr/~huet/PUBLIC/Hampton.pdf }}
34. ^{{cite journal | first = J. B. | last = Wells | title = Typability and type checking in the second-order lambda-calculus are equivalent and undecidable | citeseerx = 10.1.1.31.3590 | journal = Tech. Rep. 93-011 | year = 1993 }}
35. ^{{cite web | url = http://compcert.inria.fr/doc/index.html | title = The Compcert verified compiler |last = Leroy|first = Xavier|date = 17 September 2018}}
36. ^{{cite journal | url = http://research.microsoft.com/en-us/um/people/simonpj/papers/gadt/ | title = Simple unification-based type inference for GADTs |author1=Simon Peyton Jones |author2=Dimitrios Vytiniotis |author3=Stephanie Weirich |author4=Geoffrey Washburn | journal=Icfp 2006 | pages = 50–61 | date = April 2006 }}
37. ^{{cite book | title = Generalized Algebraic Data Types and Object-Oriented Programming |author1=Andrew Kennedy |author2=Claudio Russo | work=OOPSLA | date = October 2005 | location = San Diego, California | url = http://research.microsoft.com/~akenn/generics/gadtoop.pdf | archiveurl = https://web.archive.org/web/20061229164852/http://research.microsoft.com/~akenn/generics/gadtoop.pdf | archivedate = 2006-12-29 |isbn=9781595930316 }} source of citation
38. ^{{cite web|last1=Huges|first1=John|title=Why Functional Programming Matters|url=http://www.cse.chalmers.se/~rjmh/Papers/whyfp.pdf|website=chalmers.se/cse|publisher=Chalmers Tekniska H¨ogskola}}
39. ^{{cite journal | last = Hartel | first = Pieter |author2=Henk Muller |author3=Hugh Glaser | title = The Functional C experience | journal = Journal of Functional Programming | volume=14 |issue=2 | pages = 129–135 |date=March 2004 | url = http://www.ub.utwente.nl/webdocs/ctit/1/00000084.pdf | doi=10.1017/S0956796803004817}}; {{cite web | title = Functional programming in Python, Part 3 | url = http://www-128.ibm.com/developerworks/linux/library/l-prog3.html | archiveurl = https://web.archive.org/web/20071016124848/http://www-128.ibm.com/developerworks/linux/library/l-prog3.html | archivedate = 2007-10-16 | author = David Mertz | accessdate = 2006-09-17 | work=IBM developerWorks}}([https://web.archive.org/web/20071016124848/http://www-128.ibm.com/developerworks/linux/library/l-prog.html Part 1], [https://web.archive.org/web/20071016124848/http://www-128.ibm.com/developerworks/linux/library/l-prog2.html Part 2])
40. ^{{cite web | url = http://www.digitalmars.com/d/2.0/function.html#pure-functions | title = Functions — D Programming Language 2.0 |publisher=Digital Mars | accessdate = |date = 30 December 2012 }}
41. ^{{cite web|url=http://www.luafaq.org/#T1.2|title=Lua Unofficial FAQ (uFAQ) |publisher=}}
42. ^{{cite web|url=https://brendaneich.com/2008/04/popularity/|first=Brendan|last= Eich|title = Popularity|date = 3 April 2008|publisher=}}
43. ^{{cite web |url=http://python-history.blogspot.de/2009/04/origins-of-pythons-functional-features.html |title=Origins of Python's "Functional" Features |last=van Rossum |first=Guido |authorlink=Guido van Rossum |date=2009-04-21 |accessdate=2012-09-27 }}
44. ^{{cite web | url = https://docs.python.org/dev/library/functools.html#functools.reduce | title = functools — Higher order functions and operations on callable objects | publisher=Python Software Foundation | date = 2011-07-31 | accessdate = 2011-07-31}}
45. ^{{cite book | last = Skarsaune | first = Martin | title = The SICS Java Port Project Automatic Translation of a Large Object Oriented System from Smalltalk to Java | year = 2008 }}
46. ^{{cite web|last=Gosling|first=James|title=Closures|url= http://blogs.oracle.com/jag/entry/closures|work=James Gosling: on the Java Road|publisher=Oracle|accessdate=11 May 2013|archive-url= https://web.archive.org/web/20130414180002/https://blogs.oracle.com/jag/entry/closures|archive-date=2013-04-14|dead-url=yes|df=}}
47. ^{{cite web|url=https://blogs.oracle.com/javatraining/entry/java_se_8_lambda_quick|title=Java SE 8 Lambda Quick Start|first = Michael|last = Williams|date = 8 April 2013}}
48. ^{{cite book | title = Effective Java | edition = Second | first = Joshua | last = Bloch | chapter = Item 15: Minimize Mutability|isbn= 978-0321356680|date = 2008|publisher = Addison-Wesley }}
49. ^Purely functional data structures by Chris Okasaki, Cambridge University Press, 1998, {{ISBN|0-521-66350-4}}
50. ^{{Cite web|url=http://www.hypirion.com/musings/understanding-persistent-vector-pt-1|title=polymatheia - Understanding Clojure's Persistent Vector, pt. 1|last=(hyPiRion)|first=Jean Niklas L'orange|website=www.hypirion.com|access-date=2018-11-13}}
51. ^{{cite web | last = Newbern | first = J. | title = All About Monads: A comprehensive guide to the theory and practice of monadic programming in Haskell | url = http://monads.haskell.cz/html/index.html/html/ | accessdate = 2008-02-14 }}
52. ^{{Cite web|url=https://fsharpforfunandprofit.com/posts/13-ways-of-looking-at-a-turtle/#2-basic-fp---a-module-of-functions-with-immutable-state|title=Thirteen ways of looking at a turtle {{!}} F# for fun and profit|website=fsharpforfunandprofit.com|language=en|access-date=2018-11-13}}
53. ^{{cite book|author=Larry C. Paulson|title=ML for the Working Programmer|url=https://books.google.com/books?id=XppZdaDs7e0C|accessdate=10 February 2013|date=28 June 1996|publisher=Cambridge University Press|isbn=978-0-521-56543-1}}
54. ^{{cite web | url = http://benchmarksgame.alioth.debian.org/u32/which-programs-are-fastest.php?gcc=on&ghc=on&clean=on&ocaml=on&sbcl=on&fsharp=on&racket=on&clojure=on&hipe=on&calc=chart | title = Which programs are fastest? | Computer Language Benchmarks Game | publisher=benchmarksgame.alioth.debian.org | accessdate = 2011-06-20 }}
55. ^{{cite journal | title = Immutability specification and its applications |author1=Igor Pechtchanski |author2=Vivek Sarkar | journal = Concurrency and Computation: Practice and Experience | volume = 17 | issue = 5–6 | pages = 639–662 | year = 2005 | doi = 10.1002/cpe.853 }}
56. ^{{cite web | url = http://book.realworldhaskell.org/read/profiling-and-optimization.html#x_eK1 | title = Chapter 25. Profiling and optimization |publisher=Book.realworldhaskell.org | accessdate = 2011-06-20 }}
57. ^{{cite web|archiveurl =https://web.archive.org/web/20131226033005/http://www.aquabu.com/2008/02/16/fibonacci-sequence-recursion-in-erlang|deadurl = yes|url = http://www.aquabu.com/2008/02/16/fibonacci-sequence-recursion-in-erlang |archivedate = 26 December 2013|title = Fibonacci Sequence Recursion in Erlang|last = Thorp|first = Noah|date = 16 February 2008|website = Aquabu}}
58. ^{{cite book | first1 = Martin | last1 = Odersky | first2 = Lex | last2 = Spoon | first3 = Bill | last3 = Venners | date = December 13, 2010 | title = Programming in Scala: A Comprehensive Step-by-step Guide | publisher = Artima | edition = 2nd | pages = 883/852 | isbn = 978-0-9815316-4-9 | url = http://www.artima.com/shop/programming_in_scala_2ed }}
59. ^{{cite conference | last = Piro | first = Christopher | title = Functional Programming at Facebook | url = http://cufp.galois.com/2009/abstracts.html#ChristopherPiroEugeneLetuchy | year = 2009 | conference = CUFP 2009 | accessdate = 2009-08-29 }}
60. ^1 million is so 2011 // WhatsApp blog, 2012-01-06: "the last important piece of our infrastracture is Erlang"
61. ^{{cite conference | last = Momtahan | first = Lee | title = Scala at EDF Trading: Implementing a Domain-Specific Language for Derivative Pricing with Scala | url = http://cufp.galois.com/2009/abstracts.html#LeeMomtahan | year = 2009 | conference = CUFP 2009 | accessdate = 2009-08-29 }}
62. ^{{cite web | last = Graham | first = Paul | title = Beating the Averages | url = http://www.paulgraham.com/avg.html | year = 2003 | accessdate = 2009-08-29 }}
63. ^{{cite conference | last = Sims | first = Steve | title = Building a Startup with Standard ML | url = http://cufp.galois.com/2006/slides/SteveSims.pdf | year = 2006 | conference = CUFP 2006 | accessdate = 2009-08-29 }}
64. ^{{cite conference | last = Laurikari | first = Ville | title = Functional Programming in Communications Security. | url = http://cufp.galois.com/2007/abstracts.html#VilleLaurikari | year = 2007 | conference = CUFP 2007 | accessdate = 2009-08-29 }}
65. ^{{cite web | url = http://www.infoq.com/news/2009/01/clojure_production | last = Lorimer | first = R. J. | title = Live Production Clojure Application Announced }}
66. ^{{Triangulation|196|Emmanuel Schanzer of Bootstrap}}
67. ^{{cite journal | last = Hartheimer | first = Anne | title = Programming a Text Editor in MacScheme+Toolsmith | journal = MacTech | volume = 3 | issue = 1 | year = 1987 | url = http://www.mactech.com/articles/mactech/Vol.03/03.1/SchemeWindows/index.html | accessdate = 2008-08-28 | deadurl = yes | archiveurl = https://web.archive.org/web/20110629183752/http://www.mactech.com/articles/mactech/Vol.03/03.1/SchemeWindows/index.html | archivedate = 2011-06-29 | df = }}
68. ^{{cite conference | last = Kidd | first = Eric | url = http://cufp.galois.com/2007/abstracts.html#EricKidd | title = Terrorism Response Training in Scheme | conference = CUFP 2007 | accessdate = 2009-08-26 }}
69. ^{{cite conference | last = Cleis | first = Richard | url = http://cufp.galois.com/2006/abstracts.html#RichardCleis | title = Scheme in Space | conference = CUFP 2006 | accessdate = 2009-08-26 }}
70. ^{{cite web | title = Who uses Erlang for product development? | work=Frequently asked questions about Erlang | url = http://erlang.org/faq/introduction.html#idp32582608 | accessdate = 2018-04-27 }}
71. ^{{cite conference | last = Armstrong | first = Joe | title = A history of Erlang | conference = Third ACM SIGPLAN Conference on History of Programming Languages | location = San Diego, California | date = June 2007 | doi = 10.1145/1238844.1238850 }}
72. ^{{cite journal | last = Larson | first = Jim | title = Erlang for concurrent programming | journal = Communications of the ACM | volume= 52 | issue= 3 | date = March 2009 | doi=10.1145/1467247.1467263 | page=48 }}
73. ^{{cite journal | last = Minsky | first = Yaron | last2 = Weeks | first2 = Stephen | title = Caml Trading — experiences with functional programming on Wall Street | journal = Journal of Functional Programming | volume = 18 | issue = 4 | pages = 553–564 |date=July 2008 | url = http://journals.cambridge.org/action/displayAbstract?aid=1899164 | doi = 10.1017/S095679680800676X | accessdate = 2008-08-27 }}
74. ^{{cite conference | last = Leroy | first = Xavier | title = Some uses of Caml in Industry | url = http://cufp.galois.com/2007/slides/XavierLeroy.pdf | conference = CUFP 2007 | accessdate = 2009-08-26 }}
75. ^{{cite web | title = Haskell in industry | work = Haskell Wiki | url = http://www.haskell.org/haskellwiki/Haskell_in_industry | accessdate = 2009-08-26 | quote=Haskell has a diverse range of use commercially, from aerospace and defense, to finance, to web startups, hardware design firms and lawnmower manufacturers. }}
76. ^{{cite web | title = Effective Scala | work = Scala Wiki | url = https://twitter.github.com/effectivescala/?sd | accessdate = 2012-02-21 | quote=Effective Scala. }}
77. ^{{cite web | title = State-Based Scripting in Uncharted 2 | url = http://www.gameenginebook.com/gdc09-statescripting-uncharted2.pdf | archiveurl = https://web.archive.org/web/20121215014637/http://www.gameenginebook.com/gdc09-statescripting-uncharted2.pdf | archivedate = 2012-12-15 | accessdate = 2011-08-08 }}
78. ^{{cite conference | last = Hudak | first = Paul |author2=Hughes, J. |author3=Jones, S. P. |author4=Wadler, P. | authorlink=Paul Hudak | title = A history of Haskell: being lazy with class | url=http://dl.acm.org/citation.cfm?doid=1238844.1238856 | conference = Third ACM SIGPLAN Conference on History of Programming Languages | location = San Diego, California| date = June 2007 | doi = 10.1145/1238844.1238856 | accessdate = 2013-09-26 }}
79. ^{{cite web | url = http://www.r-project.org/useR-2006/program.html | title = The useR! 2006 conference schedule includes papers on the commercial use of R |publisher=R-project.org | date = 2006-06-08 | accessdate = 2011-06-20 }}
80. ^{{cite book | last = Chambers | first = John M. | authorlink=John Chambers (programmer) | title = Programming with Data: A Guide to the S Language | publisher=Springer Verlag | year = 1998 | pages = 67–70 | isbn = 978-0-387-98503-9 }}
81. ^{{cite web | website= Department of Applied Math | publisher = University of Colorado | title = Functional vs. Procedural Programming Language | url = http://amath.colorado.edu/computing/mmm/funcproc.html | archiveurl = https://web.archive.org/web/20071113175801/http://amath.colorado.edu/computing/mmm/funcproc.html | archivedate = 2007-11-13 | accessdate = }}
82. ^{{cite web | url = http://www.topxml.com/xsl/articles/fp/ | author = Dimitre Novatchev | title = The Functional Programming Language XSLT — A proof through examples | accessdate = May 27, 2006 | work=TopXML }}
83. ^{{cite web | url = http://gnosis.cx/publish/programming/xml_models_fp.html | author = David Mertz | title = XML Programming Paradigms (part four): Functional Programming approached to XML processing | accessdate = May 27, 2006 | work=IBM developerWorks }}
84. ^{{cite journal | title = SEQUEL: A structured English query language | author = Donald D. Chamberlin and Raymond F. Boyce | journal = Proceedings of the 1974 ACM SIGFIDET | pages = 249–264 | year = 1974 }}
85. ^{{cite web | title = Sim-Diasca: a large-scale discrete event concurrent simulation engine in Erlang | url = http://research.edf.com/research-and-the-scientific-community/software/sim-diasca-80704.html |date = November 2011 }}
86. ^{{cite web | url = http://www.codecommit.com/blog/scala/implementing-persistent-vectors-in-scala | author = Daniel Spiewak | title = Implementing Persistent Vectors in Scala | accessdate = | date = 26 August 2008 | website = Code Commit }}
[67][68][69][70][71][72][73][74][75][76][77][78][79][80][81][82][83][84][85][86]
}}

Further reading

  • {{cite book|last1=Abelson|first1=Hal|authorlink1=Hal Abelson|last2=Sussman|first2=Gerald Jay|authorlink2=Gerald Jay Sussman | title = Structure and Interpretation of Computer Programs | url = http://mitpress.mit.edu/sicp/ | year = 1985|publisher=MIT Press}}
  • Cousineau, Guy and Michel Mauny. The Functional Approach to Programming. Cambridge, UK: Cambridge University Press, 1998.
  • Curry, Haskell Brooks and Feys, Robert and Craig, William. Combinatory Logic. Volume I. North-Holland Publishing Company, Amsterdam, 1958.
  • {{cite book | last1 = Curry | first1 = Haskell B. | first2 = J. Roger | last2 = Hindley | first3 = Jonathan P. | last3 = Seldin | authorlink1 = Haskell Curry | authorlink2 = J. Roger Hindley | authorlink3 = Jonathan P. Seldin | title = Combinatory Logic | volume = Vol. II | year = 1972 | publisher = North Holland | location = Amsterdam | isbn = 978-0-7204-2208-5 }}
  • Dominus, Mark Jason. Higher-Order Perl. Morgan Kaufmann. 2005.
  • {{cite book|last1=Felleisen|first1=Matthias|last2=Findler|first2=Robert|last3=Flatt|first3=Matthew|first4=Shriram |last4=Krishnamurthi | title = How to Design Programs | url = http://www.htdp.org | year = 2001|publisher=MIT Press}}
  • Graham, Paul. ANSI Common LISP. Englewood Cliffs, New Jersey: Prentice Hall, 1996.
  • MacLennan, Bruce J. Functional Programming: Practice and Theory. Addison-Wesley, 1990.
  • {{cite book|last1=O'Sullivan|first1=Brian|last2=Stewart|first2=Don|last3=Goerzen|first3=John | title = Real World Haskell | url = http://book.realworldhaskell.org/read/ | year = 2008|publisher=O'Reilly}}
  • Pratt, Terrence, W. and Marvin V. Zelkowitz. Programming Languages: Design and Implementation. 3rd ed. Englewood Cliffs, New Jersey: Prentice Hall, 1996.
  • Salus, Peter H. Functional and Logic Programming Languages. Vol. 4 of Handbook of Programming Languages. Indianapolis, Indiana: Macmillan Technical Publishing, 1998.
  • Thompson, Simon. Haskell: The Craft of Functional Programming. Harlow, England: Addison-Wesley Longman Limited, 1996.

External links

{{Spoken Wikipedia|En-Functional_programming.ogg|2011-08-25}}
  • {{cite web

| last = Ford
| first = Neal
| title = Functional thinking: Why functional programming is on the rise
| accessdate = 2013-02-24
| date = 2012-01-29
| url = http://www.ibm.com/developerworks/java/library/j-ft20/index.html
}}
  • {{cite web

| last = Akhmechet
| first = Slava
| title = defmacro – Functional Programming For The Rest of Us
| accessdate = 2013-02-24
| date = 2006-06-19
| url = http://www.defmacro.org/ramblings/fp.html

}} An introduction

  • Functional programming in Python (by David Mertz): part 1, part 2, part 3
{{Programming language}}{{Authority control}}{{DEFAULTSORT:Functional programming}}

2 : Programming paradigms|Functional programming

随便看

 

开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。

 

Copyright © 2023 OENC.NET All Rights Reserved
京ICP备2021023879号 更新时间:2024/9/27 21:28:59