Let's say I have an integer like 588 and I want to round that number up to 590
Or:
397 -> 400,
233 -> 230
...
Or maybe:
388 -> 400
77 -> 100
Does Kotlin has a function for these kind of situations? Or do I need to create my own algorithm for that? I tried using ceil() or roundToInt() but I think those are just for rounding doubles.