Function composition (computer science)
http://dbpedia.org/resource/Function_composition_(computer_science) an entity of type: Thing
La composició de funcions (no confondre amb composició d'objectes) és un acte o un mecanisme per combinar funcions simples per construir altres més complicades. Igual que la composició habitual de funcions en matemàtiques, el resultat de cada funció es passa com l'argument de la següent, i el resultat de l'última és el resultat del conjunt. Els programadors sovint apliquen les funcions de resultats d'altres funcions, i gairebé tots els llenguatges de programació permeten realitzar aquestes funcions. En alguns casos, la composició de funcions és interessant com una funció en el seu propi dret, que s'utilitzarà més endavant, aquestes funcions sempre estan definides però els llenguatges d'alt nivell ja les tenen per a fer-ho més fàcil.
rdf:langString
In computer science, function composition is an act or mechanism to combine simple functions to build more complicated ones. Like the usual composition of functions in mathematics, the result of each function is passed as the argument of the next, and the result of the last one is the result of the whole. The ability to easily compose functions encourages factoring (breaking apart) functions for maintainability and code reuse. More generally, big systems might be built by composing whole programs.
rdf:langString
rdf:langString
Composició de funcions (informàtica)
rdf:langString
Function composition (computer science)
xsd:integer
1911084
xsd:integer
1099717637
rdf:langString
La composició de funcions (no confondre amb composició d'objectes) és un acte o un mecanisme per combinar funcions simples per construir altres més complicades. Igual que la composició habitual de funcions en matemàtiques, el resultat de cada funció es passa com l'argument de la següent, i el resultat de l'última és el resultat del conjunt. Els programadors sovint apliquen les funcions de resultats d'altres funcions, i gairebé tots els llenguatges de programació permeten realitzar aquestes funcions. En alguns casos, la composició de funcions és interessant com una funció en el seu propi dret, que s'utilitzarà més endavant, aquestes funcions sempre estan definides però els llenguatges d'alt nivell ja les tenen per a fer-ho més fàcil.
rdf:langString
In computer science, function composition is an act or mechanism to combine simple functions to build more complicated ones. Like the usual composition of functions in mathematics, the result of each function is passed as the argument of the next, and the result of the last one is the result of the whole. Programmers frequently apply functions to results of other functions, and almost all programming languages allow it. In some cases, the composition of functions is interesting as a function in its own right, to be used later. Such a function can always be defined but languages with first-class functions make it easier. The ability to easily compose functions encourages factoring (breaking apart) functions for maintainability and code reuse. More generally, big systems might be built by composing whole programs. Narrowly speaking, function composition applies to functions that operate on a finite amount of data, each step sequentially processing it before handing it to the next. Functions that operate on potentially infinite data (a stream or other codata) are known as filters, and are instead connected in a pipeline, which is analogous to function composition and can execute concurrently.
xsd:nonNegativeInteger
18347