First commit

This commit is contained in:
2021-03-07 05:58:59 +01:00
committed by Andreas Schaafsma
commit 5d4c4a054e
18475 changed files with 3309357 additions and 0 deletions

View File

@@ -0,0 +1,83 @@
// Generated by Haxe 4.0.5
#ifndef INCLUDED_haxe_ds_ArraySort
#define INCLUDED_haxe_ds_ArraySort
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
HX_DECLARE_CLASS2(haxe,ds,ArraySort)
namespace haxe{
namespace ds{
class HXCPP_CLASS_ATTRIBUTES ArraySort_obj : public hx::Object
{
public:
typedef hx::Object super;
typedef ArraySort_obj OBJ_;
ArraySort_obj();
public:
enum { _hx_ClassId = 0x7ffbe7fa };
void __construct();
inline void *operator new(size_t inSize, bool inContainer=false,const char *inName="haxe.ds.ArraySort")
{ return hx::Object::operator new(inSize,inContainer,inName); }
inline void *operator new(size_t inSize, int extra)
{ return hx::Object::operator new(inSize+extra,false,"haxe.ds.ArraySort"); }
inline static hx::ObjectPtr< ArraySort_obj > __new() {
hx::ObjectPtr< ArraySort_obj > __this = new ArraySort_obj();
__this->__construct();
return __this;
}
inline static hx::ObjectPtr< ArraySort_obj > __alloc(hx::Ctx *_hx_ctx) {
ArraySort_obj *__this = (ArraySort_obj*)(hx::Ctx::alloc(_hx_ctx, sizeof(ArraySort_obj), false, "haxe.ds.ArraySort"));
*(void **)__this = ArraySort_obj::_hx_vtable;
return __this;
}
static void * _hx_vtable;
static Dynamic __CreateEmpty();
static Dynamic __Create(hx::DynamicArray inArgs);
//~ArraySort_obj();
HX_DO_RTTI_ALL;
static bool __GetStatic(const ::String &inString, Dynamic &outValue, hx::PropertyAccess inCallProp);
static void __register();
bool _hx_isInstanceOf(int inClassId);
::String __ToString() const { return HX_("ArraySort",77,e1,9c,37); }
static void sort(::cpp::VirtualArray a, ::Dynamic cmp);
static ::Dynamic sort_dyn();
static void rec(::cpp::VirtualArray a, ::Dynamic cmp,int from,int to);
static ::Dynamic rec_dyn();
static void doMerge(::cpp::VirtualArray a, ::Dynamic cmp,int from,int pivot,int to,int len1,int len2);
static ::Dynamic doMerge_dyn();
static void rotate(::cpp::VirtualArray a, ::Dynamic cmp,int from,int mid,int to);
static ::Dynamic rotate_dyn();
static int gcd(int m,int n);
static ::Dynamic gcd_dyn();
static int upper(::cpp::VirtualArray a, ::Dynamic cmp,int from,int to,int val);
static ::Dynamic upper_dyn();
static int lower(::cpp::VirtualArray a, ::Dynamic cmp,int from,int to,int val);
static ::Dynamic lower_dyn();
static void swap(::cpp::VirtualArray a,int i,int j);
static ::Dynamic swap_dyn();
};
} // end namespace haxe
} // end namespace ds
#endif /* INCLUDED_haxe_ds_ArraySort */

View File

@@ -0,0 +1,110 @@
// Generated by Haxe 4.0.5
#ifndef INCLUDED_haxe_ds_IntMap
#define INCLUDED_haxe_ds_IntMap
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
#ifndef INCLUDED_haxe_IMap
#include <haxe/IMap.h>
#endif
HX_DECLARE_CLASS1(haxe,IMap)
HX_DECLARE_CLASS2(haxe,ds,IntMap)
namespace haxe{
namespace ds{
class HXCPP_CLASS_ATTRIBUTES IntMap_obj : public hx::Object
{
public:
typedef hx::Object super;
typedef IntMap_obj OBJ_;
IntMap_obj();
public:
enum { _hx_ClassId = 0x50b86242 };
void __construct();
inline void *operator new(size_t inSize, bool inContainer=true,const char *inName="haxe.ds.IntMap")
{ return hx::Object::operator new(inSize,inContainer,inName); }
inline void *operator new(size_t inSize, int extra)
{ return hx::Object::operator new(inSize+extra,true,"haxe.ds.IntMap"); }
static hx::ObjectPtr< IntMap_obj > __new();
static hx::ObjectPtr< IntMap_obj > __alloc(hx::Ctx *_hx_ctx);
static void * _hx_vtable;
static Dynamic __CreateEmpty();
static Dynamic __Create(hx::DynamicArray inArgs);
//~IntMap_obj();
HX_DO_RTTI_ALL;
hx::Val __Field(const ::String &inString, hx::PropertyAccess inCallProp);
hx::Val __SetField(const ::String &inString,const hx::Val &inValue, hx::PropertyAccess inCallProp);
void __GetFields(Array< ::String> &outFields);
static void __register();
void __Mark(HX_MARK_PARAMS);
void __Visit(HX_VISIT_PARAMS);
bool _hx_isInstanceOf(int inClassId);
void *_hx_getInterface(int inHash);
bool remove_5889326f( ::Dynamic k);
bool exists_5889326f( ::Dynamic k);
void set_41d0cb46( ::Dynamic k, ::Dynamic v);
::String __ToString() const { return HX_("IntMap",0d,a9,08,d3); }
::Dynamic h;
void set(int key, ::Dynamic value);
::Dynamic set_dyn();
::Dynamic get(int key);
::Dynamic get_dyn();
bool exists(int key);
::Dynamic exists_dyn();
bool remove(int key);
::Dynamic remove_dyn();
::Dynamic keys();
::Dynamic keys_dyn();
::Dynamic iterator();
::Dynamic iterator_dyn();
inline void set(int key, ::null value) { __int_hash_set(HX_MAP_THIS,key,value); }
inline void set(int key, bool value) { __int_hash_set(HX_MAP_THIS,key,value); }
inline void set(int key, char value) { __int_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(int key, unsigned char value) { __int_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(int key, signed char value) { __int_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(int key, short value) { __int_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(int key, unsigned short value) { __int_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(int key, int value) { __int_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(int key, unsigned int value) { __int_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(int key, float value) { __int_hash_set_float(HX_MAP_THIS,key,value); }
inline void set(int key, double value) { __int_hash_set_float(HX_MAP_THIS,key,value); }
inline void set(int key, ::String value) { __int_hash_set_string(HX_MAP_THIS,key,value); }
template<typename V, typename H>
inline void set(int key, const ::cpp::Struct<V,H> &value) {__int_hash_set(HX_MAP_THIS,key,value); }
template<typename F>
inline void set(int key, const ::cpp::Function<F> &value) {__int_hash_set(HX_MAP_THIS,key,value); }
template<typename V>
inline void set(int key, const ::cpp::Pointer<V> &value) {__int_hash_set(HX_MAP_THIS,key,(Dynamic)value ); }
template<typename VALUE>
inline void set(Dynamic &key, const VALUE &value) { set( (int)key, value ); }
inline bool get_bool(int key) { return __int_hash_get_bool(h,key); }
inline int get_int(int key) { return __int_hash_get_int(h,key); }
inline Float get_float(int key) { return __int_hash_get_float(h,key); }
inline String get_string(int key) { return __int_hash_get_string(h,key); }
};
} // end namespace haxe
} // end namespace ds
#endif /* INCLUDED_haxe_ds_IntMap */

View File

@@ -0,0 +1,75 @@
// Generated by Haxe 4.0.5
#ifndef INCLUDED_haxe_ds_List
#define INCLUDED_haxe_ds_List
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
HX_DECLARE_CLASS2(haxe,ds,List)
HX_DECLARE_CLASS3(haxe,ds,_List,ListIterator)
HX_DECLARE_CLASS3(haxe,ds,_List,ListNode)
namespace haxe{
namespace ds{
class HXCPP_CLASS_ATTRIBUTES List_obj : public hx::Object
{
public:
typedef hx::Object super;
typedef List_obj OBJ_;
List_obj();
public:
enum { _hx_ClassId = 0x57bbda73 };
void __construct();
inline void *operator new(size_t inSize, bool inContainer=true,const char *inName="haxe.ds.List")
{ return hx::Object::operator new(inSize,inContainer,inName); }
inline void *operator new(size_t inSize, int extra)
{ return hx::Object::operator new(inSize+extra,true,"haxe.ds.List"); }
static hx::ObjectPtr< List_obj > __new();
static hx::ObjectPtr< List_obj > __alloc(hx::Ctx *_hx_ctx);
static void * _hx_vtable;
static Dynamic __CreateEmpty();
static Dynamic __Create(hx::DynamicArray inArgs);
//~List_obj();
HX_DO_RTTI_ALL;
hx::Val __Field(const ::String &inString, hx::PropertyAccess inCallProp);
hx::Val __SetField(const ::String &inString,const hx::Val &inValue, hx::PropertyAccess inCallProp);
void __GetFields(Array< ::String> &outFields);
static void __register();
void __Mark(HX_MARK_PARAMS);
void __Visit(HX_VISIT_PARAMS);
bool _hx_isInstanceOf(int inClassId);
::String __ToString() const { return HX_("List",7e,48,8c,32); }
::haxe::ds::_List::ListNode h;
::haxe::ds::_List::ListNode q;
int length;
void add( ::Dynamic item);
::Dynamic add_dyn();
void push( ::Dynamic item);
::Dynamic push_dyn();
::Dynamic pop();
::Dynamic pop_dyn();
void clear();
::Dynamic clear_dyn();
bool remove( ::Dynamic v);
::Dynamic remove_dyn();
::haxe::ds::_List::ListIterator iterator();
::Dynamic iterator_dyn();
};
} // end namespace haxe
} // end namespace ds
#endif /* INCLUDED_haxe_ds_List */

View File

@@ -0,0 +1,102 @@
// Generated by Haxe 4.0.5
#ifndef INCLUDED_haxe_ds_ObjectMap
#define INCLUDED_haxe_ds_ObjectMap
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
#ifndef INCLUDED_haxe_IMap
#include <haxe/IMap.h>
#endif
HX_DECLARE_CLASS1(haxe,IMap)
HX_DECLARE_CLASS2(haxe,ds,ObjectMap)
namespace haxe{
namespace ds{
class HXCPP_CLASS_ATTRIBUTES ObjectMap_obj : public hx::Object
{
public:
typedef hx::Object super;
typedef ObjectMap_obj OBJ_;
ObjectMap_obj();
public:
enum { _hx_ClassId = 0x4a82dae8 };
void __construct();
inline void *operator new(size_t inSize, bool inContainer=true,const char *inName="haxe.ds.ObjectMap")
{ return hx::Object::operator new(inSize,inContainer,inName); }
inline void *operator new(size_t inSize, int extra)
{ return hx::Object::operator new(inSize+extra,true,"haxe.ds.ObjectMap"); }
static hx::ObjectPtr< ObjectMap_obj > __new();
static hx::ObjectPtr< ObjectMap_obj > __alloc(hx::Ctx *_hx_ctx);
static void * _hx_vtable;
static Dynamic __CreateEmpty();
static Dynamic __Create(hx::DynamicArray inArgs);
//~ObjectMap_obj();
HX_DO_RTTI_ALL;
hx::Val __Field(const ::String &inString, hx::PropertyAccess inCallProp);
hx::Val __SetField(const ::String &inString,const hx::Val &inValue, hx::PropertyAccess inCallProp);
void __GetFields(Array< ::String> &outFields);
static void __register();
void __Mark(HX_MARK_PARAMS);
void __Visit(HX_VISIT_PARAMS);
bool _hx_isInstanceOf(int inClassId);
void *_hx_getInterface(int inHash);
void set_41d0cb46( ::Dynamic k, ::Dynamic v);
::String __ToString() const { return HX_("ObjectMap",fd,a4,50,e5); }
::Dynamic h;
void set( ::Dynamic key, ::Dynamic value);
::Dynamic set_dyn();
::Dynamic get( ::Dynamic key);
::Dynamic get_dyn();
bool exists( ::Dynamic key);
::Dynamic exists_dyn();
bool remove( ::Dynamic key);
::Dynamic remove_dyn();
::Dynamic keys();
::Dynamic keys_dyn();
inline void set(Dynamic key, ::null value) { __object_hash_set(HX_MAP_THIS,key,value); }
inline void set(Dynamic key, bool value) { __object_hash_set(HX_MAP_THIS,key,value); }
inline void set(Dynamic key, char value) { __object_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(Dynamic key, unsigned char value) { __object_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(Dynamic key, signed char value) { __object_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(Dynamic key, short value) { __object_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(Dynamic key, unsigned short value) { __object_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(Dynamic key, int value) { __object_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(Dynamic key, unsigned int value) { __object_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(Dynamic key, float value) { __object_hash_set_float(HX_MAP_THIS,key,value); }
inline void set(Dynamic key, double value) { __object_hash_set_float(HX_MAP_THIS,key,value); }
inline void set(Dynamic key, ::String value) { __object_hash_set_string(HX_MAP_THIS,key,value); }
template<typename V, typename H>
inline void set(Dynamic key, const ::cpp::Struct<V,H> &value) {__object_hash_set(HX_MAP_THIS,key,value); }
template<typename V>
inline void set(Dynamic key, const ::cpp::Function<V> &value) {__object_hash_set(HX_MAP_THIS,key,(Dynamic)value ); }
template<typename V>
inline void set(Dynamic key, const ::cpp::Pointer<V> &value) {__object_hash_set(HX_MAP_THIS,key,(Dynamic)value ); }
inline bool get_bool(Dynamic key) { return __object_hash_get_bool(h,key); }
inline int get_int(Dynamic key) { return __object_hash_get_int(h,key); }
inline Float get_float(Dynamic key) { return __object_hash_get_float(h,key); }
inline String get_string(Dynamic key) { return __object_hash_get_string(h,key); }
};
} // end namespace haxe
} // end namespace ds
#endif /* INCLUDED_haxe_ds_ObjectMap */

View File

@@ -0,0 +1,110 @@
// Generated by Haxe 4.0.5
#ifndef INCLUDED_haxe_ds_StringMap
#define INCLUDED_haxe_ds_StringMap
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
#ifndef INCLUDED_haxe_IMap
#include <haxe/IMap.h>
#endif
HX_DECLARE_CLASS1(haxe,IMap)
HX_DECLARE_CLASS2(haxe,ds,StringMap)
namespace haxe{
namespace ds{
class HXCPP_CLASS_ATTRIBUTES StringMap_obj : public hx::Object
{
public:
typedef hx::Object super;
typedef StringMap_obj OBJ_;
StringMap_obj();
public:
enum { _hx_ClassId = 0x7fd15eaa };
void __construct();
inline void *operator new(size_t inSize, bool inContainer=true,const char *inName="haxe.ds.StringMap")
{ return hx::Object::operator new(inSize,inContainer,inName); }
inline void *operator new(size_t inSize, int extra)
{ return hx::Object::operator new(inSize+extra,true,"haxe.ds.StringMap"); }
static hx::ObjectPtr< StringMap_obj > __new();
static hx::ObjectPtr< StringMap_obj > __alloc(hx::Ctx *_hx_ctx);
static void * _hx_vtable;
static Dynamic __CreateEmpty();
static Dynamic __Create(hx::DynamicArray inArgs);
//~StringMap_obj();
HX_DO_RTTI_ALL;
hx::Val __Field(const ::String &inString, hx::PropertyAccess inCallProp);
hx::Val __SetField(const ::String &inString,const hx::Val &inValue, hx::PropertyAccess inCallProp);
void __GetFields(Array< ::String> &outFields);
static void __register();
void __Mark(HX_MARK_PARAMS);
void __Visit(HX_VISIT_PARAMS);
bool _hx_isInstanceOf(int inClassId);
void *_hx_getInterface(int inHash);
bool remove_5889326f( ::Dynamic k);
bool exists_5889326f( ::Dynamic k);
void set_41d0cb46( ::Dynamic k, ::Dynamic v);
::String __ToString() const { return HX_("StringMap",2b,12,8c,69); }
::Dynamic h;
void set(::String key, ::Dynamic value);
::Dynamic set_dyn();
::Dynamic get(::String key);
::Dynamic get_dyn();
bool exists(::String key);
::Dynamic exists_dyn();
bool remove(::String key);
::Dynamic remove_dyn();
::Dynamic keys();
::Dynamic keys_dyn();
::Dynamic iterator();
::Dynamic iterator_dyn();
inline void set(String key, ::null value) { __string_hash_set(HX_MAP_THIS,key,value); }
inline void set(String key, bool value) { __string_hash_set(HX_MAP_THIS,key,value); }
inline void set(String key, char value) { __string_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(String key, unsigned char value) { __string_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(String key, signed char value) { __string_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(String key, short value) { __string_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(String key, unsigned short value) { __string_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(String key, int value) { __string_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(String key, unsigned int value) { __string_hash_set_int(HX_MAP_THIS,key,value); }
inline void set(String key, float value) { __string_hash_set_float(HX_MAP_THIS,key,value); }
inline void set(String key, double value) { __string_hash_set_float(HX_MAP_THIS,key,value); }
inline void set(String key, ::String value) { __string_hash_set_string(HX_MAP_THIS,key,value); }
template<typename V, typename H>
inline void set(String key, const ::cpp::Struct<V,H> &value) {__string_hash_set(HX_MAP_THIS,key,value); }
template<typename V>
inline void set(String key, const ::cpp::Function<V> &value) {__string_hash_set(HX_MAP_THIS,key,(Dynamic)value ); }
template<typename V>
inline void set(String key, const ::cpp::Pointer<V> &value) {__string_hash_set(HX_MAP_THIS,key,(Dynamic)value ); }
template<typename VALUE>
inline void set(Dynamic &key, const VALUE &value) { set( (String)key, value ); }
inline bool get_bool(String key) { return __string_hash_get_bool(h,key); }
inline int get_int(String key) { return __string_hash_get_int(h,key); }
inline Float get_float(String key) { return __string_hash_get_float(h,key); }
inline String get_string(String key) { return __string_hash_get_string(h,key); }
};
} // end namespace haxe
} // end namespace ds
#endif /* INCLUDED_haxe_ds_StringMap */

View File

@@ -0,0 +1,62 @@
// Generated by Haxe 4.0.5
#ifndef INCLUDED_haxe_ds__List_ListIterator
#define INCLUDED_haxe_ds__List_ListIterator
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
HX_DECLARE_CLASS3(haxe,ds,_List,ListIterator)
HX_DECLARE_CLASS3(haxe,ds,_List,ListNode)
namespace haxe{
namespace ds{
namespace _List{
class HXCPP_CLASS_ATTRIBUTES ListIterator_obj : public hx::Object
{
public:
typedef hx::Object super;
typedef ListIterator_obj OBJ_;
ListIterator_obj();
public:
enum { _hx_ClassId = 0x06484168 };
void __construct( ::haxe::ds::_List::ListNode head);
inline void *operator new(size_t inSize, bool inContainer=true,const char *inName="haxe.ds._List.ListIterator")
{ return hx::Object::operator new(inSize,inContainer,inName); }
inline void *operator new(size_t inSize, int extra)
{ return hx::Object::operator new(inSize+extra,true,"haxe.ds._List.ListIterator"); }
static hx::ObjectPtr< ListIterator_obj > __new( ::haxe::ds::_List::ListNode head);
static hx::ObjectPtr< ListIterator_obj > __alloc(hx::Ctx *_hx_ctx, ::haxe::ds::_List::ListNode head);
static void * _hx_vtable;
static Dynamic __CreateEmpty();
static Dynamic __Create(hx::DynamicArray inArgs);
//~ListIterator_obj();
HX_DO_RTTI_ALL;
hx::Val __Field(const ::String &inString, hx::PropertyAccess inCallProp);
hx::Val __SetField(const ::String &inString,const hx::Val &inValue, hx::PropertyAccess inCallProp);
void __GetFields(Array< ::String> &outFields);
static void __register();
void __Mark(HX_MARK_PARAMS);
void __Visit(HX_VISIT_PARAMS);
bool _hx_isInstanceOf(int inClassId);
::String __ToString() const { return HX_("ListIterator",8c,fc,31,c4); }
::haxe::ds::_List::ListNode head;
bool hasNext();
::Dynamic hasNext_dyn();
::Dynamic next();
::Dynamic next_dyn();
};
} // end namespace haxe
} // end namespace ds
} // end namespace _List
#endif /* INCLUDED_haxe_ds__List_ListIterator */

View File

@@ -0,0 +1,74 @@
// Generated by Haxe 4.0.5
#ifndef INCLUDED_haxe_ds__List_ListNode
#define INCLUDED_haxe_ds__List_ListNode
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
HX_DECLARE_STACK_FRAME(_hx_pos_33b72a992501f206_266_new)
HX_DECLARE_CLASS3(haxe,ds,_List,ListNode)
namespace haxe{
namespace ds{
namespace _List{
class HXCPP_CLASS_ATTRIBUTES ListNode_obj : public hx::Object
{
public:
typedef hx::Object super;
typedef ListNode_obj OBJ_;
ListNode_obj();
public:
enum { _hx_ClassId = 0x714cdb28 };
void __construct( ::Dynamic item, ::haxe::ds::_List::ListNode next);
inline void *operator new(size_t inSize, bool inContainer=true,const char *inName="haxe.ds._List.ListNode")
{ return hx::Object::operator new(inSize,inContainer,inName); }
inline void *operator new(size_t inSize, int extra)
{ return hx::Object::operator new(inSize+extra,true,"haxe.ds._List.ListNode"); }
inline static hx::ObjectPtr< ListNode_obj > __new( ::Dynamic item, ::haxe::ds::_List::ListNode next) {
hx::ObjectPtr< ListNode_obj > __this = new ListNode_obj();
__this->__construct(item,next);
return __this;
}
inline static hx::ObjectPtr< ListNode_obj > __alloc(hx::Ctx *_hx_ctx, ::Dynamic item, ::haxe::ds::_List::ListNode next) {
ListNode_obj *__this = (ListNode_obj*)(hx::Ctx::alloc(_hx_ctx, sizeof(ListNode_obj), true, "haxe.ds._List.ListNode"));
*(void **)__this = ListNode_obj::_hx_vtable;
{
HX_STACKFRAME(&_hx_pos_33b72a992501f206_266_new)
HXLINE( 267) ( ( ::haxe::ds::_List::ListNode)(__this) )->item = item;
HXLINE( 268) ( ( ::haxe::ds::_List::ListNode)(__this) )->next = next;
}
return __this;
}
static void * _hx_vtable;
static Dynamic __CreateEmpty();
static Dynamic __Create(hx::DynamicArray inArgs);
//~ListNode_obj();
HX_DO_RTTI_ALL;
hx::Val __Field(const ::String &inString, hx::PropertyAccess inCallProp);
hx::Val __SetField(const ::String &inString,const hx::Val &inValue, hx::PropertyAccess inCallProp);
void __GetFields(Array< ::String> &outFields);
static void __register();
void __Mark(HX_MARK_PARAMS);
void __Visit(HX_VISIT_PARAMS);
bool _hx_isInstanceOf(int inClassId);
::String __ToString() const { return HX_("ListNode",a0,95,b0,02); }
::Dynamic item;
::haxe::ds::_List::ListNode next;
};
} // end namespace haxe
} // end namespace ds
} // end namespace _List
#endif /* INCLUDED_haxe_ds__List_ListNode */