merge abstract method

FlyToken<T> merge(
  1. FlyToken<T> other
)

Merge another token into this one (right side wins)

Creates a new token instance by merging this token with another. Values from the other token take precedence over this token's values.

Implementation

FlyToken<T> merge(FlyToken<T> other);