literals - Definition. Was ist literals
Diclib.com
Online-Wörterbuch

Was (wer) ist literals - definition

FUNCTION DEFINITION THAT IS NOT BOUND TO AN IDENTIFIER
Anonymous closure; Function literal; Function literals; Anonymous functions; Anonymous method; Lambda (programming); Function constant; Anonymous procedure; Anonymous subroutine; Anonymous routine; Procedure constant; Lambda (Python); Functional interface; Lambda function (computer programming); Lambda expression (programming); List of programming languages that support anonymous functions; Comparison of programming languages (anonymous functions); Arrow function

XML Literals         
In the Microsoft .NET Framework, XML Literal allows a computer program to include XML directly in the code.
literally      
ad.
1.
Really, actually.
2.
Exactly, precisely, rigorously, strictly.
literal         
1.
The literal sense of a word or phrase is its most basic sense.
In many cases, the people there are fighting, in a literal sense, for their homes.
ADJ: usu ADJ n
2.
A literal translation is one in which you translate each word of the original work rather than giving the meaning of each expression or sentence using words that sound natural.
A literal translation of the name Tapies is 'walls.'
ADJ: usu ADJ n
3.
You use literal to describe someone who uses or understands words in a plain and simple way.
Dennis is a very literal person.
ADJ
4.
If you describe something as the literal truth or a literal fact, you are emphasizing that it is true.
He was saying no more than the literal truth.
ADJ: usu ADJ n [emphasis]

Wikipedia

Anonymous function

In computer programming, an anonymous function (function literal, lambda abstraction, lambda function, lambda expression or block) is a function definition that is not bound to an identifier. Anonymous functions are often arguments being passed to higher-order functions or used for constructing the result of a higher-order function that needs to return a function. If the function is only used once, or a limited number of times, an anonymous function may be syntactically lighter than using a named function. Anonymous functions are ubiquitous in functional programming languages and other languages with first-class functions, where they fulfil the same role for the function type as literals do for other data types.

Anonymous functions originate in the work of Alonzo Church in his invention of the lambda calculus, in which all functions are anonymous, in 1936, before electronic computers. In several programming languages, anonymous functions are introduced using the keyword lambda, and anonymous functions are often referred to as lambdas or lambda abstractions. Anonymous functions have been a feature of programming languages since Lisp in 1958, and a growing number of modern programming languages support anonymous functions.