public function groupBy(callable $selector){
		$this->iterator = Iterators::groupBy($this->iterator, $selector);
		return $this;
	}