()
| 118 | }, |
| 119 | |
| 120 | toOrderedSet() { |
| 121 | // Use Late Binding here to solve the circular dependency. |
| 122 | return OrderedSet(isKeyed(this) ? this.valueSeq() : this); |
| 123 | }, |
| 124 | |
| 125 | toSet() { |
| 126 | // Use Late Binding here to solve the circular dependency. |
nothing calls this directly
no test coverage detected