trait DivideTileCollectionMethods[K] extends MethodExtensions[Seq[(K, Tile)]]
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- DivideTileCollectionMethods
- MethodExtensions
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Abstract Value Members
-
abstract
def
self: Seq[(K, Tile)]
- Definition Classes
- MethodExtensions
Concrete Value Members
- def /(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]
-
def
/(other: Seq[(K, Tile)]): Seq[(K, Tile)]
Divide the values of each cell in each raster.
-
def
/(d: Double): Seq[(K, Tile)]
Divide each value of a raster by a double constant value.
-
def
/(i: Int): Seq[(K, Tile)]
Divide each value of the raster by a constant value.
-
def
/:(d: Double): Seq[(K, Tile)]
Divide a double constant value by each cell value.
-
def
/:(i: Int): Seq[(K, Tile)]
Divide a constant value by each cell value.
- def localDivide(others: Traversable[Seq[(K, Tile)]]): Seq[(K, Tile)]
-
def
localDivide(other: Seq[(K, Tile)]): Seq[(K, Tile)]
Divide the values of each cell in each raster.
-
def
localDivide(d: Double): Seq[(K, Tile)]
Divide each value of a raster by a double constant value.
-
def
localDivide(i: Int): Seq[(K, Tile)]
Divide each value of the raster by a constant value.
-
def
localDivideValue(d: Double): Seq[(K, Tile)]
Divide a double constant value by each cell value.
-
def
localDivideValue(i: Int): Seq[(K, Tile)]
Divide a constant value by each cell value.