concat method

TypedLink concat(
  1. TypedLink next
)

Adds next after this typedLink

Implementation

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