Object

debox

Util

Related Doc: package debox

Permalink

object Util

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Util
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def alloc[A](src: Array[A], offset: Int, len: Int)(implicit arg0: ClassTag[A]): Array[A]

    Permalink

    Given a src array, an offset, and a len, return a new array which copies the relevant area of src.

    Given a src array, an offset, and a len, return a new array which copies the relevant area of src.

    This method does not do any size or bounds checking.

  5. macro def array[A](as: A*): Array[A]

    Permalink

    Efficient alternative to Array.apply.

    Efficient alternative to Array.apply.

    "As seen on scala-internals!"

  6. def arrayMacro[A](c: Context)(as: scala.reflect.macros.whitebox.Context.Expr[A]*)(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[A]): scala.reflect.macros.whitebox.Context.Expr[Array[A]]

    Permalink

    Takes in something like: ArrayUtil.alloc[Int](11, 22, 33, 44)(ct)

    Takes in something like: ArrayUtil.alloc[Int](11, 22, 33, 44)(ct)

    and builds a tree like: { val arr:Array[Int] = ct.newArray(4) arr.update(0, 11) arr.update(1, 22) arr.update(2, 33) arr.update(3, 44) arr }

  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def bufferMacro[A](c: Context)(as: scala.reflect.macros.whitebox.Context.Expr[A]*)(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[A]): scala.reflect.macros.whitebox.Context.Expr[Buffer[A]]

    Permalink
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. def nextPowerOfTwo(n: Int): Int

    Permalink

    Given a number n, this method returns n if n is a power-of-two.

    Given a number n, this method returns n if n is a power-of-two.

    Otherwise, it returns the smallest power-of-two larger than n.

  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  21. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped