update3<T, S, U> static method

void update3<T, S, U>(
  1. T t,
  2. S s,
  3. U u
)

Saves instances t, s, u after removing, if exists, an instance of type T, instance of type S and instance of type U

Implementation

static void update3<T, S, U>(T t, S s, U u) {
  update<T>(t);
  update<S>(s);
  update<U>(u);
}