Tech with Maddy | Tech and Writing

Tech with Maddy | Tech and Writing

Follow
Follow
homeJavaSpring BootSoftware EngineeringCareer DevelopmentTechnical Writingbadgesnewsletter
Tag

Functional Programming

#functional-programming

More content

Read more stories on Hashnode


Articles with this tag

What Is Function Currying in Java?

Nov 7, 20212 min read

Some days ago I was exploring the codebase at my current workplace, and I came across something like this: x -> y -> (x.doSomething) I was already...

What Is Function Currying in Java?

How Does the “forEach()” Loop Work in Java?

Oct 24, 20214 min read

Java 8 has introduced many features and the forEach() method is one of them. The forEach() method is a way to iterate over a Collection (for example,...

How Does the “forEach()” Loop Work in Java?

How To handle NullPointerException Using Optional Class

Oct 4, 20215 min read

If you use Java as your primary programming language, you've come across a NullPointerException at some point in your life. At a very high level, a...

How To handle NullPointerException Using Optional Class

What does :: mean in Java?

Sep 23, 20215 min read

The :: operator refers to a method reference. A method reference is a simplified way of writing a lambda expression to call a method. Method...

What does :: mean in Java?

Stream in Java (with examples)

Aug 17, 20214 min read

Streams have been introduced in Java 8, and like lambda expression, they represent an attempt to bring functional programming to Java. What is a...

Stream in Java (with examples)

Java 8: Lambda Expression

Aug 16, 20213 min read

This article will explain the following: What a lambda expression is. External VS Internal iteration. Lambda expression within a functional...

Java 8: Lambda Expression