- java.lang.Object
-
- swim.math.Z2Vector
-
-
Constructor Summary
Constructors Constructor Description Z2Vector(long x, long y)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Z2Vector that)
<T> Output<T>
debug(Output<T> output)
Writes a developer readable, debug-formatted string representation of this object tooutput
.boolean
equals(Object other)
static TensorForm<Z2Vector>
form()
int
hashCode()
Z2Vector
minus(Z2Vector that)
static Z2Vector
of(long x, long y)
Z2Vector
opposite()
Z2Vector
plus(Z2Vector that)
Z2Vector
times(long scalar)
String
toString()
Value
toValue()
R2Vector
transform(Z2ToR2Function f)
static Z2Vector
zero()
-
-
-
Method Detail
-
opposite
public final Z2Vector opposite()
-
times
public final Z2Vector times(long scalar)
-
transform
public R2Vector transform(Z2ToR2Function f)
-
toValue
public Value toValue()
-
canEqual
protected boolean canEqual(Z2Vector that)
-
debug
public <T> Output<T> debug(Output<T> output)
Description copied from interface:Debug
Writes a developer readable, debug-formatted string representation of this object tooutput
.
-
zero
public static Z2Vector zero()
-
of
public static Z2Vector of(long x, long y)
-
form
@Kind public static TensorForm<Z2Vector> form()
-
-