trait ArrayLikeBase[A] extends Any
Not sure how useful this trait is. It has been created for the OptRefs trait because the Scala2 compiler has problems extending ArrayLike.
- Alphabetic
- By Inheritance
- ArrayLikeBase
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def elemsLen: Int
The number of elements in the collection.
The number of elements in the collection. These collections use underlying mutable Arrays and ArrayBuffers. The length of the underlying Array maybe longer by a multiple of this number.
- abstract def foreach[U](f: (A) => U): Unit
Performs the effectful function on each member of the collection.
- abstract def getClass(): Class[_ <: AnyRef]
- Definition Classes
- Any
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def equals(arg0: Any): Boolean
- Definition Classes
- Any
- def hashCode(): Int
- Definition Classes
- Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def lenStr: String
Just a handy short cut to give the length of this collection as a string.
- def toString(): String
- Definition Classes
- Any