com.bloxbean.cardano.client.util.Triple Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cardano-client-common Show documentation
Show all versions of cardano-client-common Show documentation
Cardano Client Lib - Common Module
The newest version!
package com.bloxbean.cardano.client.util;
public class Triple {
public T _1;
public Z _2;
public Y _3;
public Triple(T _1, Z _2, Y _3) {
this._1 = _1;
this._2 = _2;
this._3 = _3;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy