update4<T, S, U, V> static method

void update4<T, S, U, V>(
  1. T t,
  2. S s,
  3. U u,
  4. V v,
)

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

Implementation

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