(****************************************************************************** ** IntTable.sml ** sml ** ** Guy Blelloch ** Implementation of an Int TABLE using Treaps. ******************************************************************************) structure IntTable : TABLE = TreapTable(structure Index = IntOrder) structure IntSet : SET = SetFromTable(structure Table = IntTable)