From 94a67b3673d466a80362035db6211e5d73e40b79 Mon Sep 17 00:00:00 2001 From: michelou Date: Mon, 21 Jan 2008 15:26:26 +0000 Subject: no Liftcode on CLDC too --- src/cldc-library/scala/runtime/RichLong.scala | 30 +++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/cldc-library/scala/runtime/RichLong.scala (limited to 'src/cldc-library') diff --git a/src/cldc-library/scala/runtime/RichLong.scala b/src/cldc-library/scala/runtime/RichLong.scala new file mode 100644 index 0000000000..da1a827111 --- /dev/null +++ b/src/cldc-library/scala/runtime/RichLong.scala @@ -0,0 +1,30 @@ +/* __ *\ +** ________ ___ / / ___ Scala API ** +** / __/ __// _ | / / / _ | (c) 2002-2008, LAMP/EPFL ** +** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ ** +** /____/\___/_/ |_/____/_/ | | ** +** |/ ** +\* */ + +// $Id: $ + + +package scala.runtime + + +final class RichLong(x: Long) extends Proxy with Ordered[Long] { + + // Proxy.self + def self: Any = x + + // Ordered[Long].compare + def compare(y: Long): Int = if (x < y) -1 else if (x > y) 1 else 0 + + def min(y: Long): Long = if (x < y) x else y + def max(y: Long): Long = if (x > y) x else y + def abs: Long = if (x < 0) -x else x + + def toBinaryString: String = java.lang.Long.toString(x, 2) + def toHexString: String = java.lang.Long.toString(x, 16) + def toOctalString: String = java.lang.Long.toString(x, 8) +} -- cgit v1.2.3