Creates a new object from the items of that sequence.
// obj.item0 = 11
// obj.item1 = 22
// obj.item2 = 33
// obj.item3 = 44
var obj = Enumerable.create(11, 22, 33, 44)
.toObject('(x, index) => "item" + index');
Creates a new object from the items of that sequence.
// obj.item0 = 11
// obj.item1 = 22
// obj.item2 = 33
// obj.item3 = 44
var obj = Enumerable.create(11, 22, 33, 44)
.toObject('(x, index) => "item" + index');