module es { export interface ImmutableBag { get(index: number): E; size(): number; isEmpty(): boolean; contains(e: E): boolean; } }