blob: 51fae4cc1ea1c4a3333afc7d791fed0664150235 (
plain)
1
2
3
4
5
6
7
|
// Extracted from http://dev.w3.org/2006/webapi/WebIDL/ on 2011-05-06
interface IntegerSet {
readonly attribute unsigned long cardinality;
void union(long... ints);
void intersection(long... ints);
};
|