/* --------------------------------------------------------- * * __________ 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 com.sector91.delta.script.DScriptErr; public interface DS_Sequence extends DS_Object, DS_Iterable, DS_Indexable { public DS_Object get(int index); public DS_Sequence slice(int start, int end) throws DScriptErr; public int indexOf(DS_Object object); public int lastIndexOf(DS_Object object); }