MCPcopy Index your code
hub / github.com/dataease/SQLBot / KeyedSeq

Function KeyedSeq

frontend/public/swagger-ui-bundle.js:1576–1584  ·  view source on GitHub ↗
(s)

Source from the content-addressed store, hash-verified

1574 return null == s ? emptySequence() : isIterable(s) ? s.toSeq() : seqFromValue(s)
1575 }
1576 function KeyedSeq(s) {
1577 return null == s
1578 ? emptySequence().toKeyedSeq()
1579 : isIterable(s)
1580 ? isKeyed(s)
1581 ? s.toSeq()
1582 : s.fromEntrySeq()
1583 : keyedSeqFromValue(s)
1584 }
1585 function IndexedSeq(s) {
1586 return null == s
1587 ? emptySequence()

Callers 4

KeyedIterableFunction · 0.85
fromJSWithFunction · 0.85
fromJSDefaultFunction · 0.85
sortFactoryFunction · 0.85

Calls 4

emptySequenceFunction · 0.85
isIterableFunction · 0.85
isKeyedFunction · 0.85
keyedSeqFromValueFunction · 0.85

Tested by

no test coverage detected