فهرست منبع

[doc] fix API doc generation

See https://github.com/HaxeFoundation/haxe/issues/10351
k 2 سال پیش
والد
کامیت
b9c576544d
1فایلهای تغییر یافته به همراه2 افزوده شده و 0 حذف شده
  1. 2 0
      std/java/_std/haxe/Rest.hx

+ 2 - 0
std/java/_std/haxe/Rest.hx

@@ -37,9 +37,11 @@ abstract Rest<T>(NativeRest<T>) {
 		return new Rest(cast result);
 	}
 
+	@:dox(hide)
 	@:from static function ofNativeInt(collection:NativeArray<Int>):Rest<Int>
 		return ofNativePrimitive(new NativeRest<java.lang.Integer>(collection.length), collection);
 
+	@:dox(hide)
 	@:from static function ofNativeFloat(collection:NativeArray<Float>):Rest<Float>
 		return ofNativePrimitive(new NativeRest<java.lang.Double>(collection.length), collection);