For be able to write ``` BigInteger a = 123 ``` instead of ``` BigInteger a = BigInteger.valueOf(123) ``` Scala equivalent to: ``` implicit def intToBigInteger(x: Int) = BigInteger.valueOf(x) ```