iamsmkr opened a new issue, #13445:
URL: https://github.com/apache/arrow/issues/13445

   I have a list of vectors
   ```scala
   val vectors = List(superSteps: IntVector, dstVertexIds: BigIntVector, 
vertexIds: BigIntVector)
   ```
   
   The `int get(int index)` method isn't available in any common vector 
interface. How do I get the value of all the vectors instead of invoking `int 
get(int index)` on each vector individually?
   ```scala
   vectors.map(v => v.get(row))
   ```
   
   Please suggest.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to