Skip to content
Gentilhomme edited this page Jul 26, 2016 · 5 revisions

Collection : Set

This class is extended by List

This is a set based on typescript basarat collections. This one is a usefull collection when you need something more complete than classic array. I recommend to use this one as a static list collection.

Exemple

const myNumber: United.Collections.Set<number> = new United.Collections.Set<number>([
    0,1,2,3,4,5,6,7,8,9
]);
myNumber.has([0,5]); // TRUE

Clone this wiki locally