link abstract method

bool link(
  1. L link, {
  2. required Cell host,
})

Establishes a new connection from host to target cell.

Parameters:

  • link: The cell to link to
  • host: The cell that owns these synapses (used for validation)

Returns true if:

  1. Host's test rules pass (TestObject.link)
  2. Connection didn't already exist

Implementation

bool link(L link, {required Cell host});