Hemant Singhmemorycrypt.hashnode.dev·Aug 18, 2023Exploring Anonymous Classes, Methods, and Variables in C#In the realm of C# programming, the concepts of anonymous classes, methods, and variables provide developers with powerful tools for writing concise, flexible, and efficient code. These features allow you to create entities without explicitly definin...Discuss·37 readsanonymous function
Grant Williamsgreatgrant.hashnode.dev·Apr 4, 2023Kotlin Lambda ExpressionsIntroduction Lambda expressions are a powerful and concise tool that has gained significant importance in modern programming, particularly in functional programming paradigms. In this tutorial, we will delve into the fundamentals of Kotlin lambda exp...Discuss·10 likes·106 readsLambda Expression
Dewald Swanepoelstuffididntknowthen.hashnode.dev·Mar 23, 2023The Anonymous Anonymous FunctionToday I came up against a unique challenge and landed upon an even more unique solution, so I felt it prudent to jot it down. The Scenario I don't often use the init() function in Go but today I did. I have a package called config in which I read som...Discuss·115 readsGo Language
Malavi Pandemalavibolg.hashnode.dev·Feb 21, 2023RUBY (part-9)Introduction Hello readers this blog is all about some unique nameless things we can call. But after knowing their functionality I feel very bad by saying they are doing such amazing time-saving things but not even one person has the courtesy to name...Discuss·41 readsRuby
Yonatan Karp-RudinProyonatankarp.com·Dec 20, 2022Kotlin Code Smell 14 - Anonymous Functions AbusersTL;DR: Avoid excessive use of closures and functions. Encapsulate them within objects. Problems Maintainability Testability Code Reuse Implementation Hiding Debugging Solutions Wrap functions/closures Reify algorithms using a method object ...Discuss·185 readsKotlin Code Smellsanonymous function
Adeoti Ayodejiblog.lordsarcastic.dev·Nov 4, 2022Lambda functions in PythonLambda functions are in short, anonymous functions. Literally one-liners that would make you blush with praise. They are functions you create when you want to perform operations in a simple expression, or for functions you're going to use just once. ...Discuss·4 likes·193 readsIIFE
Saurav Maheshwarixauravww.hashnode.dev·Oct 23, 2022Functions in JavaScriptTopics to be discussed: Functions, passing functions, anonymous functions, arrow functions. What do you mean by functions? function print(name) { return "Hello " + name console.log("this will never execute") } We can call (invoke) this function ...Discuss·122 readsJavaScript anonymous function
Pratik JagrutPropsj.codes·Aug 19, 2022Anonymous Functions in GoThe anonymous function is a feature in Golang which let us define a function without a name. This feature is also called a function literal. This is useful when you want an inline function or to form a closure. Declaring the anonymous function The sy...Discuss·40 readsGolangGo Language