Zimo Li
Zimo Li

Zimo Li

Follow
Follow
home
Tag

Scala

#scala

More content

Read more stories on Hashnode


Articles with this tag

Dealing with Daylight Saving Time in Scala/Java

Jul 7, 2022

Handing daylight saving time programmatically can be tricky. It could create a mini Y2K problem twice a year when done incorrectly. If you want to get...

Dealing with Daylight Saving Time in Scala/Java

Scala Reduce vs Fold

May 24, 2022

There is only a subtle difference between reduce and fold. Fold requires an initial value, whereas reduce doesn’t need one. Reduce example: scala> (1...

Scala Reduce vs Fold