最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - The index of an item in OrderedMap - Stack Overflow

programmeradmin1浏览0评论

As the title states, I want to get the index of a particular item. Is there a way to do this?

const key = 1
const map = new Immutable.OrderedMap([5, 'a'], [3, 'b'], [1, 'c'])

So, in this case, the index of key would be 2.

As the title states, I want to get the index of a particular item. Is there a way to do this?

const key = 1
const map = new Immutable.OrderedMap([5, 'a'], [3, 'b'], [1, 'c'])

So, in this case, the index of key would be 2.

Share Improve this question edited Sep 10, 2015 at 20:33 Felix Kling 817k181 gold badges1.1k silver badges1.2k bronze badges asked Sep 10, 2015 at 20:27 Azad SalahliAzad Salahli 9163 gold badges15 silver badges31 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 6

You can get the key sequence from the map:

let index = map.keySeq().findIndex(k => k === key);

See the docs for more info.

Alternatively, you could explicitly iterate over the keys and pare them:

function findIndexOfKey(map, key) {
    let index = -1;
    for (let k of map.keys()) {
        index += 1;
        if (k === key) {
            break
        }
    }
    return index;
}

the best way to do it would be the way immutablejs inners does it.

Like this:

const index = orderedMap._map.get(k);

https://github./facebook/immutable-js/blob/master/src/OrderedMap.js#L43

If you need the key and value as well as the index, you can iterate over the entrySeq

orderedMap.entrySeq().forEach((tuple,i) => console.log(`Index ${i} \n Key ${tuple[0]} \n Value ${tuple[1]}`)
发布评论

评论列表(0)

  1. 暂无评论