Packages

t

geotrellis.raster

IterableTile

trait IterableTile extends MacroIterableTile

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IterableTile
  2. MacroIterableTile
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def foreachDoubleVisitor(visitor: macros.DoubleTileVisitor): Unit
    Definition Classes
    MacroIterableTile
  2. abstract def foreachIntVisitor(visitor: macros.IntTileVisitor): Unit
    Definition Classes
    MacroIterableTile

Concrete Value Members

  1. macro def foreach(f: (Int, Int, Int) ⇒ Unit): Unit

    Execute the given function 'f' at every location in the tile.

    Execute the given function 'f' at every location in the tile. The function 'f' takes the column, row, and value and returns nothing (presumably for side-effects).

  2. macro def foreachDouble(f: (Int, Int, Double) ⇒ Unit): Unit

    Execute the given function 'f' at every location in the tile.

    Execute the given function 'f' at every location in the tile. The function 'f' takes the column, row, and value, the last one as a double, and returns nothing (presumably for side-effects).