Find link

language:

jump to random article

Find link is a tool written by Edward Betts.

Longer titles found: Examples of anonymous functions (view)

searching for Anonymous function 16 found (60 total)

alternate case: anonymous function

Standard library (555 words) [view diff] exact match in snippet view article find links to article

as an instance of the java.lang.String class. Smalltalk defines an anonymous function expression (a "block") as an instance of its library's BlockContext
Typed lambda calculus (738 words) [view diff] exact match in snippet view article find links to article
that uses the lambda symbol ( λ {\displaystyle \lambda } ) to denote anonymous function abstraction. In this context, types are usually objects of a syntactic
Symmetry (social choice) (497 words) [view diff] exact match in snippet view article
participants ahead of time. For example, in an election, a voter-anonymous function is one where it does not matter who casts which vote, i.e. all voters'
Visitor pattern (3,978 words) [view diff] exact match in snippet view article find links to article
superfluous in traverse. The reason is that it is possible to use an anonymous function that calls the desired target method with a lexically captured object:
Eval (2,948 words) [view diff] exact match in snippet view article find links to article
eval('return $foo;'); ?> In Lua 5.1, loadstring compiles Lua code into an anonymous function. Example as an expression evaluator: loadstring("print('Hello World
JQuery (2,990 words) [view diff] exact match in snippet view article find links to article
constructing the DOM for the current Web page. $(function () { // This anonymous function is called when the page has completed loading. // Here, one can place
Big O notation (9,101 words) [view diff] exact match in snippet view article find links to article
equation or inequality, the use of asymptotic notation stands for an anonymous function in the set O(g), which eliminates lower-order terms, and helps to
LFE (programming language) (1,387 words) [view diff] exact match in snippet view article
lambda-match to account for Erlang's pattern-matching abilities in anonymous function calls. This section does not represent a complete comparison between
JavaScript syntax (10,782 words) [view diff] exact match in snippet view article find links to article
"foo var") even though foo() has exited. console.log(t); // Top An anonymous function is simply a function without a name and can be written either using
Immediately invoked function expression (1,055 words) [view diff] exact match in snippet view article find links to article
in the global environment. Originally known as a "self-executing anonymous function", Ben Alman later introduced the current term IIFE as a more semantically
C Sharp 3.0 (1,167 words) [view diff] exact match in snippet view article find links to article
information. Lambda expressions provide a concise way to write first-class anonymous function values. Compare the following C# 2.0 snippet: listOfFoo.Where(delegate(Foo
Lambda lifting (8,423 words) [view diff] exact match in snippet view article find links to article
which is a lambda abstraction only. It is regarded as defining an anonymous function. A name must be created for the function. A named lift expression
Common Lisp (11,969 words) [view diff] exact match in snippet view article find links to article
calls the above function LIST-MATCHING-LINES with a pathname and an anonymous function as the predicate. The predicate returns the pathname of a shell or
Exception handling syntax (4,966 words) [view diff] exact match in snippet view article find links to article
Returned: table: 00809308 if foo(42) then print "Success" end -- Success Anonymous function if pcall( function() -- Do something that might throw an error. end)
Lambda calculus definition (4,204 words) [view diff] exact match in snippet view article find links to article
Description Abstraction <expression> ::= λ <variable-list> . <expression> Anonymous function definition. Application term <expression> ::= <application-term> Application
C Sharp syntax (10,595 words) [view diff] exact match in snippet view article find links to article
syntax to write the code inline and the compiler will then generate an anonymous function for it. Func<int, int> f = delegate(int x) { return x * 2; }; This