com.g2forge.alexandria.java.tuple.ITuple2GS Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-java Show documentation
Show all versions of ax-java Show documentation
Standard Java library and the basis of the ${alexandria.name} project.
package com.g2forge.alexandria.java.tuple;
public interface ITuple2GS extends ITuple2G_, ITuple2_S, ITuple1GS {
@Override
public ITuple2GS set0(T0 value);
@Override
public ITuple2GS set1(T1 value);
public default T1 swap1(final T1 value) {
final T1 retVal = get1();
set1(value);
return retVal;
}
}