CellPath

final case class CellPath(value: String)

Path to a cell in a structure

 struct A {
   int x;
   B b;
 };
 struct B { int y; };

 A a;

 a.b.y = 2; // here 'a.b.y' is a path
Companion:
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def isEmpty: Boolean
def split: List[String]

Inherited methods

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