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

hx.MyStringBuf.hx 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
#if cpp
class MyStringBuf {
	var parts = [];
	private var _length: Int = 0;

	public var length(get, never): Int;

	public function get_length() {
		return _length;
	}

	public function new() {
	}
	public function add(str: String) {
		_length += str.length;
		parts.push(str);
	}
	public function addChar(c: Int) {
		add(N.ichar(c));
	}
	public function toString() {
		return parts.join('');
	}
}
#else
typedef MyStringBuf = StringBuf;
#end




© 2015 - 2024 Weber Informatics LLC | Privacy Policy