What is a Lambda?

后端 未结 7 1736
傲寒
傲寒 2020-11-28 21:53

Could someone provide a good description of what a Lambda is? We have a tag for them and they\'re on the secrets of C# question, but I have yet to find a good definition an

7条回答
  •  情深已故
    2020-11-28 22:36

    There's not really such a thing as 'a lambda' in programming. It depends on the language, etc.

    In short, normally a language that 'has lambdas' uses the term for anonymous functions or, in some cases, closures. Like so, in Ruby:

    f = lambda { return "this is a function with no name" }
    puts f.call
    

提交回复
热议问题