Scala: What is the Nothing data type?
Briefly

Nothing is used to indicate that a computation or function will never produce a result normally, either because it throws an exception, enters an infinite loop, or encounters some other abnormal termination.
Some common use cases of Nothing include Signals Abnormal Termination, Type Inference, and Empty Collections.
Read at Alvinalexander
[
add
]
[
|
|
]