We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75cd70b commit 3f9edafCopy full SHA for 3f9edaf
src/EnumSet.php
@@ -145,17 +145,6 @@ public function contains($enumerator): bool
145
public function getIterator(): Iterator
146
{
147
return $this->{$this->fnDoGetIterator}();
148
-
149
- /*
150
- $ordinal = 0;
151
- $enumerationCount = $this->enumerationCount;
152
- $fnDoGetBit = $this->fnDoGetBit;
153
- for (; $ordinal < $enumerationCount; ++$ordinal) {
154
- if ($this->{$fnDoGetBit}($ordinal)) {
155
- yield $ordinal => ($this->enumeration)::byOrdinal($ordinal);
156
- }
157
158
- */
159
}
160
161
/**
0 commit comments