コード例 #1
0
 // Reserves memory for the given number of nodes.
 internal virtual void ReserveNodes(int nodeCount)
 {
     m_list_nodes.SetCapacity(nodeCount);
 }
コード例 #2
0
 // Reserves memory for the given number of lists.
 internal virtual void ReserveLists(int listCount)
 {
     m_lists.SetCapacity(listCount);
 }