cgta.oscala.util

ArrayHelp

object ArrayHelp

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ArrayHelp
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

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

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

    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def copyNew[A](arr: Array[A])(implicit arg0: ClassTag[A]): Array[A]

  7. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  9. def fill[A](arr: Array[A], start: Int, end: Int, a: A): Unit

  10. def finalize(): Unit

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

    Definition Classes
    AnyRef → Any
  12. def grow[A](src: Array[A], sz: Int)(implicit arg0: Manifest[A]): Array[A]

  13. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  14. def insertAt[A](arr: Array[A], idx: Int, a: A): A

    inserts an item at and index shifting what is currently at that index and beyond to the right, returning the last element in the array

  15. def insertAtShiftLeft[A](arr: Array[A], idx: Int, a: A): A

    inserts an item at the specified index, shifting whatever was at that index and before to the left, returning the first element in the array

    inserts an item at the specified index, shifting whatever was at that index and before to the left, returning the first element in the array

    [a,b,c,d], e, 0 -> [e,b,c,d], a [a,b,c,d], e, 3 -> [b,c,d,e], a

  16. final def isInstanceOf[T0]: Boolean

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

    Definition Classes
    AnyRef
  18. final def notify(): Unit

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

    Definition Classes
    AnyRef
  20. def removeAddOnLeft[A](arr: Array[A], idx: Int, a: A): A

    Removes the item at the specified index, shifting all elements with a lower index to the right, and setting arr(0) = a

  21. def removeAddOnRight[A](arr: Array[A], idx: Int, a: A): A

    Removes the item at the specified index, shifting all elements with a higher index to the left, and setting arr(arr.size - 1) = a

  22. def shiftLeft[A](arr: Array[A], amount: Int, a: A): Unit

    shifts the array to the left, inserting a's at the end

  23. def shiftRight[A](arr: Array[A], amount: Int, a: A): Unit

    shifts the array to the right, inserting a's at the start

  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  25. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped