About 1,310,000 results
Open links in new tab
  1. language agnostic - What is a lambda (function)? - Stack Overflow

    Aug 19, 2008 · A Lambda Function, or a Small Anonymous Function, is a self-contained block of functionality that can be passed around and used in your code. Lambda has different names in …

  2. language agnostic - What is a Lambda? - Stack Overflow

    "Lambda" refers to the Lambda Calculus or to a specific lambda expression. Lambda calculus is basically a branch of logic and mathematics that deals with functions, and is the basis of …

  3. What is a lambda expression, and when should I use one?

    Sep 26, 2023 · A lambda expression, sometimes also referred to as a lambda function or (strictly speaking incorrectly, but colloquially) as a lambda, is a simplified notation for defining and …

  4. What exactly is "lambda" in Python? - Stack Overflow

    Mar 8, 2011 · Also lambda can be used in an expression directly, while def is a statement. def f(x, y): return x + y Would give you almost the same result as. f = lambda x, y: x + y And you can …

  5. python - How are lambdas useful? - Stack Overflow

    @Javier I agree with you if you are talking about "lambda" the concept; however, if we're talking about "lambda" the python keyword then: 1) named functions are faster and can do more …

  6. Announcing LAMBDA - techcommunity.microsoft.com

    Dec 3, 2020 · =LAMBDA. S imply put, LAMBDA allows you to define your own custom functions using Excel’s formula language. Excel already allows you to define custom functions, but only …

  7. What is the difference between a 'closure' and a 'lambda'?

    In Lambda Calculus (λ Calculus), the only exists value is such thing, so, in many other language after that, the name of such thing might be called as lambda (λ). Functions might have free …

  8. Is there a way to perform "if" in python's lambda? [duplicate]

    @Glenn Maynard: There's almost no reason to use a lambda, period. Assigning a lambda to a variable -- as a stand-in for def-- is generally a Very Bad Idea (tm). Just use a def so mere …

  9. C# Lambda ( => ) - Stack Overflow

    Apr 7, 2017 · This is the lambda operator. Which means 'goes to'. It is used to create lambda expressions which is syntax offered by C# for anonymous methods. eg. lamda expression …

  10. Understanding lambda in Python and using it to pass multiple …

    Because a lambda is (conceptually) the same as a function, just written inline. Your example is equivalent to . def f(x, y) : return x + y just without binding it to a name like f. Also how do you …