Exemplo n.º 1
0
 public void RemoveAt(int Index)
 {
     FScriptMap.RemoveAt(ref InternalMap, Index, ref MapLayout);
 }
Exemplo n.º 2
0
 public int AddUninitialized()
 {
     return(FScriptMap.AddUninitialized(ref InternalMap, ref MapLayout));
 }
Exemplo n.º 3
0
 public int GetMaxIndex()
 {
     return(FScriptMap.GetMaxIndex(ref InternalMap));
 }
Exemplo n.º 4
0
 public void Empty(int Slack)
 {
     FScriptMap.Empty(ref InternalMap, Slack, ref MapLayout);
 }
Exemplo n.º 5
0
 public bool IsValidIndex(int Index)
 {
     return(FScriptMap.IsValidIndex(ref InternalMap, Index));
 }
Exemplo n.º 6
0
 public int Num()
 {
     return(FScriptMap.Num(ref InternalMap));
 }
Exemplo n.º 7
0
 //[MethodImplAttribute(MethodImplOptions.InternalCall)]
 public static extern void RemoveAt(ref FScriptMap _this, int Index, ref FScriptMapLayout Layout);
Exemplo n.º 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);
Exemplo n.º 9
0
 //[MethodImplAttribute(MethodImplOptions.InternalCall)]
 public static extern void Empty(ref FScriptMap _this, int Slack, ref FScriptMapLayout Layout);
Exemplo n.º 10
0
 //[MethodImplAttribute(MethodImplOptions.InternalCall)]
 public static extern IntPtr GetData(ref FScriptMap _this, int Index, ref FScriptMapLayout Layout);
Exemplo n.º 11
0
 //[MethodImplAttribute(MethodImplOptions.InternalCall)]
 public static extern int GetMaxIndex(ref FScriptMap _this);
Exemplo n.º 12
0
 //[MethodImplAttribute(MethodImplOptions.InternalCall)]
 public static extern int Num(ref FScriptMap _this);
Exemplo n.º 13
0
 //[MethodImplAttribute(MethodImplOptions.InternalCall)]
 public static extern bool IsValidIndex(ref FScriptMap _this, int Index);