All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jtransc.simd.Float32x4Utils Maven / Gradle / Ivy

Go to download

JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.

There is a newer version: 0.6.8
Show newest version
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