link method

  1. @override
bool link(
  1. L cell
)
override

Links another cell to this one

Parameters:

  • cell: The cell to link

Returns true if linking succeeded (passed test rules)

Implementation

@override
bool link(L cell) {
  return _cell.link(cell);
}