(s)
| 1592 | : indexedSeqFromValue(s) |
| 1593 | } |
| 1594 | function SetSeq(s) { |
| 1595 | return ( |
| 1596 | null == s |
| 1597 | ? emptySequence() |
| 1598 | : isIterable(s) |
| 1599 | ? isKeyed(s) |
| 1600 | ? s.entrySeq() |
| 1601 | : s |
| 1602 | : indexedSeqFromValue(s) |
| 1603 | ).toSetSeq() |
| 1604 | } |
| 1605 | ;((Iterator.prototype.toString = function () { |
| 1606 | return '[Iterator]' |
| 1607 | }), |
no test coverage detected