/* --------------------------------------------------------- *
* __________ D E L T A S C R I P T *
* (_________() *
* / === / - A fast, dynamic scripting language *
* | == | - Version 4.13.11.0 *
* / === / - Developed by Adam R. Nelson *
* | = = | - 2011-2013 *
* / === / - Distributed under GNU LGPL v3 *
* (________() - http://github.com/ar-nelson/deltascript *
* *
* --------------------------------------------------------- */
package com.sector91.delta.script.objects;
import java.util.Collection;
import com.sector91.delta.script.DScriptErr;
public interface DS_MutableCollection extends DS_Iterable,
DS_Object,
Collection<DS_Object>
{
public void addAll(DS_Object... items);
public void removeAll(DS_Object... items);
public void retainAll(DS_Object... items);
public void removeWhere(DS_Callable callable) throws DScriptErr;
public void retainWhere(DS_Callable callable) throws DScriptErr;
}