Fixed indentation in dynarrays.txt

This commit is contained in:
alexey.lysiuk 2017-10-27 18:23:18 +03:00
parent 40a348b1f1
commit da94008f39
1 changed files with 7 additions and 7 deletions

View File

@ -7,7 +7,7 @@ struct DynArray_I8 native
native void Copy(DynArray_I8 other); native void Copy(DynArray_I8 other);
native void Move(DynArray_I8 other); native void Move(DynArray_I8 other);
native uint Find(int item) const; native uint Find(int item) const;
native uint Push (int item); native uint Push (int item);
native bool Pop (); native bool Pop ();
native void Delete (uint index, int deletecount = 1); native void Delete (uint index, int deletecount = 1);
@ -26,7 +26,7 @@ struct DynArray_I16 native
native void Copy(DynArray_I16 other); native void Copy(DynArray_I16 other);
native void Move(DynArray_I16 other); native void Move(DynArray_I16 other);
native uint Find(int item) const; native uint Find(int item) const;
native uint Push (int item); native uint Push (int item);
native bool Pop (); native bool Pop ();
native void Delete (uint index, int deletecount = 1); native void Delete (uint index, int deletecount = 1);
@ -45,7 +45,7 @@ struct DynArray_I32 native
native void Copy(DynArray_I32 other); native void Copy(DynArray_I32 other);
native void Move(DynArray_I32 other); native void Move(DynArray_I32 other);
native uint Find(int item) const; native uint Find(int item) const;
native uint Push (int item); native uint Push (int item);
native bool Pop (); native bool Pop ();
native void Delete (uint index, int deletecount = 1); native void Delete (uint index, int deletecount = 1);
@ -64,7 +64,7 @@ struct DynArray_F32 native
native void Copy(DynArray_F32 other); native void Copy(DynArray_F32 other);
native void Move(DynArray_F32 other); native void Move(DynArray_F32 other);
native uint Find(double item) const; native uint Find(double item) const;
native uint Push (double item); native uint Push (double item);
native bool Pop (); native bool Pop ();
native void Delete (uint index, int deletecount = 1); native void Delete (uint index, int deletecount = 1);
@ -83,7 +83,7 @@ struct DynArray_F64 native
native void Copy(DynArray_F64 other); native void Copy(DynArray_F64 other);
native void Move(DynArray_F64 other); native void Move(DynArray_F64 other);
native uint Find(double item) const; native uint Find(double item) const;
native uint Push (double item); native uint Push (double item);
native bool Pop (); native bool Pop ();
native void Delete (uint index, int deletecount = 1); native void Delete (uint index, int deletecount = 1);
@ -102,7 +102,7 @@ struct DynArray_Ptr native
native void Copy(DynArray_Ptr other); native void Copy(DynArray_Ptr other);
native void Move(DynArray_Ptr other); native void Move(DynArray_Ptr other);
native uint Find(voidptr item) const; native uint Find(voidptr item) const;
native uint Push (voidptr item); native uint Push (voidptr item);
native bool Pop (); native bool Pop ();
native void Delete (uint index, int deletecount = 1); native void Delete (uint index, int deletecount = 1);
@ -121,7 +121,7 @@ struct DynArray_String native
native void Copy(DynArray_String other); native void Copy(DynArray_String other);
native void Move(DynArray_String other); native void Move(DynArray_String other);
native uint Find(String item) const; native uint Find(String item) const;
native uint Push (String item); native uint Push (String item);
native bool Pop (); native bool Pop ();
native void Delete (uint index, int deletecount = 1); native void Delete (uint index, int deletecount = 1);