haxe/src/haxe/ds/ReadOnlyArray.cs
// Generated by Haxe 4.3.7

#pragma warning disable 109, 114, 219, 429, 168, 162
namespace haxe.ds._ReadOnlyArray {
	public sealed class ReadOnlyArray_Impl_ {
		
		
		
		public static int get_length<T>(global::Array<T> this1) {
			return this1.length;
		}
		
		
		public static T @get<T>(global::Array<T> this1, int i) {
			return this1[i];
		}
		
		
		public static global::Array<T> concat<T>(global::Array<T> this1, global::Array<T> a) {
			return this1.concat(((global::Array<T>) (a) ));
		}
		
		
	}
}