breeze.collection.mutable

SparseArray

final class SparseArray[V] extends ArrayLike[V] with Storage[V] with Serializable

A SparseArray is a sparse representation of an array using a two-array binary-search approach. There are two arrays: index and data, which together are pairs (i, v) of indices into the array and the value at that position.

The default value is assumed to be null for AnyRef, and 0 for AnyVal types.

Annotations
@SerialVersionUID( 1L )
Linear Supertypes
Serializable, Serializable, Storage[V], ArrayLike[V], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SparseArray
  2. Serializable
  3. Serializable
  4. Storage
  5. ArrayLike
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SparseArray(size: Int)(implicit manElem: ClassTag[V], zero: Zero[V])

  2. new SparseArray(size: Int, default: V)(implicit manElem: ClassTag[V])

  3. new SparseArray(index: Array[Int], data: Array[V], used: Int, size: Int, default: V)

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

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

    Definition Classes
    Any
  6. def activeSize: Int

    How many elements are stored in terms of space.

    How many elements are stored in terms of space. In HashVectors, activeSize is the number of non-zero elements, while iterableSize is the number of buckets currently allocated. (activeSize <= iterableSize in general, activeSize == iterableSize for everything except hashing implementations.)

    Definition Classes
    SparseArrayStorageArrayLike
  7. def allVisitableIndicesActive: Boolean

    Only gives true if isActive would return true for all i.

    Only gives true if isActive would return true for all i. (May be false anyway)

    returns

    Definition Classes
    SparseArrayStorage
  8. final def apply(i: Int): V

    Definition Classes
    SparseArrayArrayLike
    Annotations
    @inline()
  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def compact(): Unit

    Compacts the array by removing all stored default values.

  12. def concatenate(that: SparseArray[V])(implicit man: ClassTag[V]): SparseArray[V]

  13. def contains(i: Int): Boolean

  14. var data: Array[V]

    Returns the actual flat array of elements used.

    Returns the actual flat array of elements used.

    returns

    Definition Classes
    SparseArrayStorage
  15. val default: V

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

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

    Definition Classes
    AnyRef → Any
  18. def filter(f: (V) ⇒ Boolean): SparseArray[V]

    Filter's the array by removing all values for which f is false.

  19. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. final def findOffset(i: Int): Int

    Returns the offset into index and data for the requested vector index.

    Returns the offset into index and data for the requested vector index. If the requested index is not found, the value is negative and can be converted into an insertion point with ~rv.

    Attributes
    protected
  21. def foreach[U](f: (V) ⇒ U): Unit

    Only iterates "active" elements.

    Only iterates "active" elements. I'm not sure how I feel about this behavior, since it's inconsistent with the rest of Breeze. I will think on it.

    U

    f
    Definition Classes
    ArrayLike
  22. def get(i: Int): Option[V]

  23. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  24. def getOrElse(i: Int, value: ⇒ V): V

  25. def getOrElseUpdate(i: Int, value: ⇒ V): V

  26. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  27. var index: Array[Int]

  28. final def indexAt(i: Int): Int

    Gives the logical index from the physical index.

    Gives the logical index from the physical index.

    i
    returns

    Definition Classes
    SparseArrayStorage
  29. def isActive(i: Int): Boolean

    Some storages (namely HashStorage) won't have active indices packed.

    Some storages (namely HashStorage) won't have active indices packed. This lets you know if the bin is actively in use.

    i

    index into index/data arrays

    returns

    Definition Classes
    SparseArrayStorage
  30. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  31. def iterableSize: Int

    How many elements must be iterated over using valueAt/indexAt.

    How many elements must be iterated over using valueAt/indexAt. In HashVectors, activeSize is the number of non-zero elements, while iterableSize is the number of buckets currently allocated. (activeSize <= iterableSize in general, activeSize == iterableSize for everything except hashing implementations.)

    Definition Classes
    Storage
  32. def iterator: Iterator[(Int, V)]

    Only iterates "active" elements

    Only iterates "active" elements

    Definition Classes
    ArrayLike
  33. def keysIterator: Iterator[Int]

    Only iterates "active" keys

    Only iterates "active" keys

    Definition Classes
    SparseArrayArrayLike
  34. def length: Int

    Definition Classes
    ArrayLike
  35. def map[B](f: (V) ⇒ B)(implicit arg0: ClassTag[B], arg1: Zero[B]): SparseArray[B]

    Maps all values.

    Maps all values. If f(this.default) is not equal to the new default value, the result may be an efficiently dense (or almost dense) paired array.

  36. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  39. def quickCompact(): Unit

    Like compact, but doesn't look for defaultValues that can be removed.

  40. def reserve(nnz: Int): Unit

  41. val size: Int

    How many elements are logically stored here.

    How many elements are logically stored here. This may be <= activeSize.

    returns

    Definition Classes
    SparseArrayStorageArrayLike
  42. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  43. def toArray[U >: V](implicit arg0: ClassTag[U]): Array[U]

    Definition Classes
    ArrayLike
  44. def toIndexedSeq: List[V]

    Definition Classes
    ArrayLike
  45. def toList: List[V]

    Definition Classes
    ArrayLike
  46. def toMap: Map[Int, V]

    Definition Classes
    ArrayLike
  47. def toString(): String

    Definition Classes
    SparseArray → AnyRef → Any
  48. final def update(i: Int, value: V): Unit

    Sets the given value at the given index if the value is not equal to the current default.

    Sets the given value at the given index if the value is not equal to the current default. The data and index arrays will be grown to support the insertion if necessary. The growth schedule doubles the amount of allocated memory at each allocation request up until the sparse array contains 1024 values, at which point the growth is additive: an additional n * 1024 spaces will be allocated for n in 1,2,4,8,16. The largest amount of space added to this vector will be an additional 16*1024*(sizeof(Elem)+4), which is 196608 bytes at a time for a SparseVector[Double], although more space is needed temporarily while moving to the new arrays.

    Definition Classes
    SparseArrayArrayLike
    Annotations
    @inline()
  49. def use(index: Array[Int], data: Array[V], used: Int): Unit

  50. final def valueAt(i: Int): V

    same as data(i).

    same as data(i). Gives the value at the underlying offset.

    i

    index into the data array

    returns

    Definition Classes
    SparseArrayStorage
  51. def valuesIterator: Iterator[V]

    Only iterates "active" elements

    Only iterates "active" elements

    Definition Classes
    SparseArrayArrayLike
  52. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Storage[V]

Inherited from ArrayLike[V]

Inherited from AnyRef

Inherited from Any

Ungrouped