From 14a631a5fec42d04d0723355a0b93e482b5e4662 Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Fri, 8 May 2009 16:33:15 +0000 Subject: massive new collections checkin. --- src/library/scalax/runtime/BoxedDoubleArray.scala | 25 ----------------------- 1 file changed, 25 deletions(-) delete mode 100755 src/library/scalax/runtime/BoxedDoubleArray.scala (limited to 'src/library/scalax/runtime/BoxedDoubleArray.scala') diff --git a/src/library/scalax/runtime/BoxedDoubleArray.scala b/src/library/scalax/runtime/BoxedDoubleArray.scala deleted file mode 100755 index 16fc3e1056..0000000000 --- a/src/library/scalax/runtime/BoxedDoubleArray.scala +++ /dev/null @@ -1,25 +0,0 @@ -/* __ *\ -** ________ ___ / / ___ Scala API ** -** / __/ __// _ | / / / _ | (c) 2002-2009, LAMP/EPFL ** -** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ ** -** /____/\___/_/ |_/____/_/ | | ** -** |/ ** -\* */ - -// $Id: BoxedByteArray.scala 17000 2009-01-29 13:05:53Z odersky $ - - -package scalax.runtime - -@serializable -final class BoxedDoubleArray(val value: Array[Double]) extends BoxedArray[Double] { - - def length: Int = value.length - - def apply(index: Int): Double = value(index) - - def update(index: Int, elem: Double) { - value(index) = elem - } - def unbox(elemClass: Class[_]): AnyRef = value -} -- cgit v1.2.3