Fatih CoşkunKotlin Nullable Types vs. Java OptionalWhen Java 8 introduced the Optional type many years ago, I was happy like a bird. I already knew about the Optional type from various…Mar 25, 20184
EthanOptional.orElse()In Spring (and Java in general), Optional is a container object that may or may not contain a non-null value. The orElse() method is used…Sep 30Sep 30
Ihor MalovanyiInferring Optional Generic Type in SwiftMaking Generic Type optionality based on its value.Aug 20, 20222Aug 20, 20222
Ansgar Mikel NellSmall Code Improvements, Lesson 4: Nested null checksThis will be a perfect example of how Optional is a game changer for any Java development. I have to say that these kinds of refactorings…Aug 9Aug 9
Fatih CoşkunKotlin Nullable Types vs. Java OptionalWhen Java 8 introduced the Optional type many years ago, I was happy like a bird. I already knew about the Optional type from various…Mar 25, 20184
EthanOptional.orElse()In Spring (and Java in general), Optional is a container object that may or may not contain a non-null value. The orElse() method is used…Sep 30
Ihor MalovanyiInferring Optional Generic Type in SwiftMaking Generic Type optionality based on its value.Aug 20, 20222
Ansgar Mikel NellSmall Code Improvements, Lesson 4: Nested null checksThis will be a perfect example of how Optional is a game changer for any Java development. I have to say that these kinds of refactorings…Aug 9
Igor MachadoUsing optional_view to manage optional references in C++Reference type is a complicated subject in C++, although necessary to program certain behaviors. A classic application is on assignment…Jun 22, 2023
Juan RadaKotlin Nullable type vs Java Optional/Arrow OptionWhen I used to code only in Java in the JVM, I reach the conclusion that APIs should always return Optional when the value can be null…Feb 28, 20193