|
Scala example source code file (number-parsing.scala)
The Scala number-parsing.scala source codeobject Test { def numTests() = { val MinusZero = Float.box(-0.0f) val PlusZero = Float.box(0.0f) assert(PlusZero match { case MinusZero => false ; case _ => true }) assert(MinusZero match { case PlusZero => false ; case _ => true }) assert((MinusZero: scala.Float) == (PlusZero: scala.Float)) assert(!(MinusZero equals PlusZero)) List( -5f.max(2) , -5f max 2 , -5.max(2) , -5 max 2 ) foreach (num => assert(num == 2)) } case class Foo(val x: Double) { def unary_- : Foo = Foo(-x) def +(other: Foo): Foo = Foo(x + other.x) } def objTests = { assert(-Foo(5.0) + Foo(10.0) == Foo(5.0)) assert(-Foo(5.0).+(Foo(10.0)) == Foo(-15.0)) } def main(args: Array[String]): Unit = { numTests() } } Other Scala examples (source code examples)Here is a short list of links related to this Scala number-parsing.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.