implicit final class VectorIsParallelizable[T] extends AnyVal with CustomParallelizable[T, ParVector[T]]
- Alphabetic
- By Inheritance
- VectorIsParallelizable
- CustomParallelizable
- Parallelizable
- AnyVal
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-  new VectorIsParallelizable(coll: immutable.Vector[T])
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
      
      
        getClass(): Class[_ <: AnyVal]
      
      
      - Definition Classes
- AnyVal → Any
 
- 
      
      
      
        
      
    
      
        final 
        def
      
      
        isInstanceOf[T0]: Boolean
      
      
      - Definition Classes
- Any
 
- 
      
      
      
        
      
    
      
        
        def
      
      
        par: ParVector[T]
      
      
      Returns a parallel implementation of this collection. Returns a parallel implementation of this collection. For most collection types, this method creates a new parallel collection by copying all the elements. For these collection, partakes linear time. Mutable collections in this category do not produce a mutable parallel collection that has the same underlying dataset, so changes in one collection will not be reflected in the other one.Specific collections (e.g. ParArrayormutable.ParHashMap) override this default behaviour by creating a parallel collection which shares the same underlying dataset. For these collections,partakes constant or sublinear time.All parallel collections return a reference to themselves. - returns
- a parallel implementation of this collection 
 - Definition Classes
- VectorIsParallelizable → CustomParallelizable → Parallelizable
 
- 
      
      
      
        
      
    
      
        
        def
      
      
        parCombiner: Combiner[T, ParVector[T]]
      
      
      The default parimplementation uses the combiner provided by this method to create a new parallel collection.The default parimplementation uses the combiner provided by this method to create a new parallel collection.- returns
- a combiner for the parallel collection of type - ParRepr
 - Attributes
- protected[this]
- Definition Classes
- CustomParallelizable → Parallelizable
 
- 
      
      
      
        
      
    
      
        
        def
      
      
        seq: immutable.Vector[T]
      
      
      - Definition Classes
- VectorIsParallelizable → Parallelizable
 
- 
      
      
      
        
      
    
      
        
        def
      
      
        toString(): String
      
      
      - Definition Classes
- Any