Tag Archives: function programming in java

Extension Keyword in Dart

Extension Keyword in Dart

Introduction Dart, a versatile and modern programming language, has introduced several features to enhance code expressiveness and maintainability. Among these features, the `extension` keyword stands out as a powerful tool for extending existing classes without modifying their source code. In this blog, we will delve into the world of Dart’s `extension` keyword, explore its benefits, Continue Reading »

Functional Interface and Lambda Expression

  Welcome to the tutorial of Functional Interface and Lambda expression. In this tutorial we will discuss fundamental concept of functional interface and lambda expression. Functional Interface : Functional Interface is just a interface with one abstract method, but it  can have any number of default and static method. Runnable and Comparable interface are the Continue Reading »