MCPcopy
hub / github.com/immutable-js/immutable-js / lastIndexOf

Method lastIndexOf

src/Repeat.js:66–71  ·  view source on GitHub ↗
(searchValue)

Source from the content-addressed store, hash-verified

64 }
65
66 lastIndexOf(searchValue) {
67 if (this.size !== 0 && is(this._value, searchValue)) {
68 return this.size - 1;
69 }
70 return -1;
71 }
72
73 __iterate(fn, reverse) {
74 const size = this.size;

Callers

nothing calls this directly

Calls 1

isFunction · 0.90

Tested by

no test coverage detected