SUPPORT THE WORK

GetWiki

function type

ARTICLE SUBJECTS
aesthetics  →
being  →
complexity  →
database  →
enterprise  →
ethics  →
fiction  →
history  →
internet  →
knowledge  →
language  →
licensing  →
linux  →
logic  →
method  →
news  →
perception  →
philosophy  →
policy  →
purpose  →
religion  →
science  →
sociology  →
software  →
truth  →
unix  →
wiki  →
ARTICLE TYPES
essay  →
feed  →
help  →
system  →
wiki  →
ARTICLE ORIGINS
critical  →
discussion  →
forked  →
imported  →
original  →
function type
[ temporary import ]
please note:
- the content below is remote from Wikipedia
- it has been imported raw for GetWiki
In computer science and mathematical logic, a function type (or arrow type or exponential) is the type of a variable or parameter to which a function has or can be assigned, or an argument or result type of a higher-order function taking or returning a function.A function type depends on the type of the parameters and the result type of the function (it, or more accurately the unapplied type constructor {{nowrap|· → ·}}, is a higher-kinded type). In theoretical settings and programming languages where functions are defined in curried form, such as the simply typed lambda calculus, a function type depends on exactly two types, the domain A and the range B. Here a function type is often denoted {{math|A → B}}, following mathematical convention, or {{math|B'A}}, based on there existing exactly {{math|B'A}} (exponentially many) set-theoretic functions mappings A to B in the category of sets. The class of such maps or functions is called the exponential object. The act of currying makes the function type adjoint to the product type; this is explored in detail in the article on currying.The function type can be considered to be a special case of the dependent product type, which among other properties, encompasses the idea of a polymorphic function.

Programming languages

The syntax used for function types in several programming languages can be summarized, including an example type signature for the higher-order function composition function:{| class=wikitable! colspan=2 | Language !! Notation !! Example type signature
With first-class functions, parametric polymorphismC Sharp (programming language)>C#| Func2=csharp|Func compose(Func f, Func g);}}
Haskell (programming language)>Haskell| α -> ρ2=haskell|compose :: (b -> c) -> (a -> b) -> a -> c}}
| OCaml| α -> ρ
2=ocaml|compose : ('b -> 'c) -> ('a -> 'b) -> 'a -> 'c}}
Scala (programming language)>Scala| (α1,α2,...,αn) => ρ2=scala|1=def compose[A, B, C](f: B => C, g: A => B): A => C }}
| Standard ML| α -> ρ
2=sml|compose : ('b -> 'c) -> ('a -> 'b) -> 'a -> 'c}}
Swift (programming language)>Swift| α -> ρ2=swift|func compose(f: (B) -> C, g: (A) -> B) -> (A) -> C}}
Rust (programming language)>Rust| fn(α1,α2,...,αn) -> ρ2=rust|fn compose(f: fn(A) -> B, g: fn(B) -> C) -> fn(A) -> C}}
With first-class functions, without parametric polymorphismGo (programming language)>Go| func(α1,α2,...,αn) ρ2=go|var compose func(func(int)int, func(int)int) func(int)int}}
C++, Objective-C, with Blocks (C language extension)>blocks| ρ (^)(α1,α2,...,αn)2=objc|int (^compose(int (^f)(int), int (^g)(int)))(int);}}
Without first-class functions, parametric polymorphismC (programming language)>C| ρ (*)(α1,α2,...,αn)2=c|int (*compose(int (*f)(int), int (*g)(int)))(int);}}
| C++11| Not unique.std::function is the more general type (see below).
2=cpp|function compose;}}
When looking at the example type signature of, for example C#, the type of the function {{code|compose}} is actually Func,Func>.Due to type erasure in C++11's std::function, it is more common to use templates for higher order function parameters and type inference (auto) for closures.

Denotational semantics

The function type in programming languages does not correspond to the space of all set-theoretic functions. Given the countably infinite type of natural numbers as the domain and the booleans as range, then there are an uncountably infinite number (2ℵ0 = c) of set-theoretic functions between them. Clearly this space of functions is larger than the number of functions that can be defined in any programming language, as there exist only countably many programs (a program being a finite sequence of a finite number of symbols) and one of the set-theoretic functions effectively solves the halting problem.Denotational semantics concerns itself with finding more appropriate models (called domains) to model programming language concepts such as function types. It turns out that restricting expression to the set of computable functions is not sufficient either if the programming language allows writing non-terminating computations (which is the case if the programming language is Turing complete). Expression must be restricted to the so-called continuous functions (corresponding to continuity in the Scott topology, not continuity in the real analytical sense). Even then, the set of continuous function contains the parallel-or function, which cannot be correctly defined in all programming languages.

See also

References

{{Data types}}

- content above as imported from Wikipedia
- "function type" does not exist on GetWiki (yet)
- time: 6:34pm EDT - Wed, Apr 24 2024
[ this remote article is provided by Wikipedia ]
LATEST EDITS [ see all ]
GETWIKI 23 MAY 2022
GETWIKI 09 JUL 2019
Eastern Philosophy
History of Philosophy
GETWIKI 09 MAY 2016
GETWIKI 18 OCT 2015
M.R.M. Parrott
Biographies
GETWIKI 20 AUG 2014
CONNECT