Sunday, August 28, 2016

Scala <-> Java Mapping


Types
  • Int - int #55, #65
  • Float - float
  • Boolean - boolean

Methods
  • str.toInt - Integer.parseInt(str) #55 
    • Name Change Interoperability is achieved through Implicit Conversions