package ast.representation;

/**
 * @author jpm
 * @since Mar 2, 2006
 *
 */
public abstract class Sequence
{
    /** Return the nth element, equivalent to seq-nth */
    public abstract double getNth(long aPosition);
}
