blob: 03b7cad2c2fb9bd0a3992e32f453aa7c65131d72 [file] [log] [blame]
package edu.uci.ics.asterix.om.base;
public interface IACollection extends IAObject {
/** may be expensive for certain list implementations */
public int size();
public IACursor getCursor();
}