First commit

This commit is contained in:
2021-03-07 05:58:59 +01:00
commit 8204c6b556
18475 changed files with 3309357 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
// Generated by Haxe 4.0.5
#ifndef INCLUDED_haxe_lang_Iterable
#define INCLUDED_haxe_lang_Iterable
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
HX_DECLARE_CLASS2(haxe,lang,Iterable)
HX_DECLARE_CLASS2(haxe,lang,Iterator)
namespace haxe{
namespace lang{
class HXCPP_CLASS_ATTRIBUTES Iterable_obj {
public:
typedef hx::Object super;
HX_DO_INTERFACE_RTTI;
static void __boot();
::Dynamic (hx::Object :: *_hx_iterator)();
static inline ::Dynamic iterator( ::Dynamic _hx_) {
return (_hx_.mPtr->*( hx::interface_cast< ::haxe::lang::Iterable_obj *>(_hx_.mPtr->_hx_getInterface(0x1f692be6)))->_hx_iterator)();
}
};
} // end namespace haxe
} // end namespace lang
#endif /* INCLUDED_haxe_lang_Iterable */

View File

@@ -0,0 +1,34 @@
// Generated by Haxe 4.0.5
#ifndef INCLUDED_haxe_lang_Iterator
#define INCLUDED_haxe_lang_Iterator
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
HX_DECLARE_CLASS2(haxe,lang,Iterator)
namespace haxe{
namespace lang{
class HXCPP_CLASS_ATTRIBUTES Iterator_obj {
public:
typedef hx::Object super;
HX_DO_INTERFACE_RTTI;
static void __boot();
bool (hx::Object :: *_hx_hasNext)();
static inline bool hasNext( ::Dynamic _hx_) {
return (_hx_.mPtr->*( hx::interface_cast< ::haxe::lang::Iterator_obj *>(_hx_.mPtr->_hx_getInterface(0x1f76d722)))->_hx_hasNext)();
}
::Dynamic (hx::Object :: *_hx_next)();
static inline ::Dynamic next( ::Dynamic _hx_) {
return (_hx_.mPtr->*( hx::interface_cast< ::haxe::lang::Iterator_obj *>(_hx_.mPtr->_hx_getInterface(0x1f76d722)))->_hx_next)();
}
};
} // end namespace haxe
} // end namespace lang
#endif /* INCLUDED_haxe_lang_Iterator */