concat method

Link concat(
  1. Link next
)

Adds next after this link

Implementation

Link concat(
  Link next,
) =>
    Link.concat(this, next);