7mind / izumi

Productivity-oriented collection of lightweight fancy stuff for Scala toolchain
https://izumi.7mind.io
BSD 2-Clause "Simplified" License
613 stars 66 forks source link

Shorthand assertIO variants #2155

Open neko-kai opened 1 month ago

neko-kai commented 1 month ago

Unpacking assertIO, to replace

abc <- x.getY
_ <- assertIO(abc == 3)

with

assertIO(x.getY)(_ == 3)