Elizabeth Roop
- Total activity 4
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 2
-
-
Elizabeth Roop created a post, [Scala] How do I satisfy IDEA's expectation that my scala class's companion object's declaration be tested?
case class Point(x: Double = 0, y: Double = 0, z: Double = 0) extends Point3D(x, y, z) { def +(that: Point): Point = new Point(x + that.x, y + that....