Skip to content

2.05 Extract a cell

Boris Shilov edited this page Jun 21, 2019 · 3 revisions

Extract a cell

For best performance you should extract a cell by row then column:

import com.github.marklister.collections._
CollSeq(("A",2,3.1),
        ("B",3,4.0),
        ("C",4,5.2)) (1)._2

res0: Int = 3