import “selection”;

d3_selectionPrototype.size = function() {

var n = 0;
this.each(function() { ++n; });
return n;

};