com.jtransc.simd.Float32x4Utils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtransc-rt-core Show documentation
Show all versions of jtransc-rt-core Show documentation
JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.
package com.jtransc.simd;
import com.jtransc.annotation.JTranscInvisible;
@JTranscInvisible
public class Float32x4Utils {
static public String toStringInternal(Float32x4 v) {
return "Simd.Float32x4(" + Float32x4.getX(v) + ", " + Float32x4.getY(v) + ", " + Float32x4.getZ(v) + ", " + Float32x4.getW(v) + ")";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy