示例#1
0
 public void RemoveAt(int Index)
 {
     FScriptMap.RemoveAt(ref InternalMap, Index, ref MapLayout);
 }
示例#2
0
 public int AddUninitialized()
 {
     return(FScriptMap.AddUninitialized(ref InternalMap, ref MapLayout));
 }
示例#3
0
 public int GetMaxIndex()
 {
     return(FScriptMap.GetMaxIndex(ref InternalMap));
 }
示例#4
0
 public void Empty(int Slack)
 {
     FScriptMap.Empty(ref InternalMap, Slack, ref MapLayout);
 }
示例#5
0
 public bool IsValidIndex(int Index)
 {
     return(FScriptMap.IsValidIndex(ref InternalMap, Index));
 }
示例#6
0
 public int Num()
 {
     return(FScriptMap.Num(ref InternalMap));
 }
示例#7
0
 //[MethodImplAttribute(MethodImplOptions.InternalCall)]
 public static extern void RemoveAt(ref FScriptMap _this, int Index, ref FScriptMapLayout Layout);
示例#8
0
 /**
  * Adds an uninitialized object to the map.
  * The map will need rehashing at some point after this call to make it valid.
  *
  * @return  The index of the added element.
  */
 //[MethodImplAttribute(MethodImplOptions.InternalCall)]
 public static extern int AddUninitialized(ref FScriptMap _this, ref FScriptMapLayout Layout);
示例#9
0
 //[MethodImplAttribute(MethodImplOptions.InternalCall)]
 public static extern void Empty(ref FScriptMap _this, int Slack, ref FScriptMapLayout Layout);
示例#10
0
 //[MethodImplAttribute(MethodImplOptions.InternalCall)]
 public static extern IntPtr GetData(ref FScriptMap _this, int Index, ref FScriptMapLayout Layout);
示例#11
0
 //[MethodImplAttribute(MethodImplOptions.InternalCall)]
 public static extern int GetMaxIndex(ref FScriptMap _this);
示例#12
0
 //[MethodImplAttribute(MethodImplOptions.InternalCall)]
 public static extern int Num(ref FScriptMap _this);
示例#13
0
 //[MethodImplAttribute(MethodImplOptions.InternalCall)]
 public static extern bool IsValidIndex(ref FScriptMap _this, int Index);