コード例 #1
0
ファイル: VertexData.java プロジェクト: unknownloner/Caustic
 /**
  * Removes the attribute at the provided index. If no attribute is found, nothing will be removed.
  *
  * @param index The index of the attribute to remove
  */
 public void removeAttribute(int index) {
   attributes.remove(index);
   nameToIndex.remove(getAttributeName(index));
 }
コード例 #2
0
 @Override
 public boolean remove(DBIDRef id) {
   return data.remove(DBIDUtil.asInteger(id)) != null;
 }