Let's say I have some reusable method (more complicated in real life) that accepts 3 BigDecimal arguments and calculates something. After calculation input params change inside and i need all three of them outside for next calculation and so on.
If only it's just one argument I coulde return it as return value.
What is idiomatic way to do this thing in Scala?
object MutableTest extends App {
def mutableMethodWithComplicatedButReusableLogic(a: BigDecimal, b: BigDecimal, c: BigDecimal) = {
a = b + c
c = b * a
b = 0
//All three of changed args should be available outside
}
var a: BigDecimal = 10
var b: BigDecimal = 11
var c: BigDecimal = 12
//1. step
mutableMethodWithComplicatedButReusableLogic(a, b, c)
//2. step a, b, c should change in step 1 and
mutableMethodWithComplicatedButReusableLogic(a*b, b, c -1)
....
}
This of course ends up with: Compile time Error:(9, 7) reassignment to val a = b + c
Is global variables answer, or some mutable helper holder Object?
I wound't mutate them, just return the computation result in a triplet or a case class instance: