Move

case class Move[+Item](item: Item, toIndex: Int) extends CollectionCommand[Item]
Value parameters:
toIndex

the index at which the item would end up IF it hadn't been removed from its current position. basically, this is the CURRENT index of an item in front of which the item will be moved to.

trait Serializable
trait Product
trait Equals
trait CollectionCommand[Item]
class Object
trait Matchable
class Any

Value members

Concrete methods

override def map[A](project: Item => A): Move[A]
Definition Classes

Inherited methods

def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product