question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

// indexedMap :: Functor f => ((a, c, [a]) -> b) -> f a -> f b
export const indexedMap = addIndex(map);

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:12 (5 by maintainers)

github_iconTop GitHub Comments

2reactions
char0ncommented, Jan 20, 2018

And to be consistent with ramda I’d rename to mapIndexed

1reaction
char0ncommented, Jan 21, 2018

I guess ramda made a unfortunate decision when naming mapObjIndexed. I’d name it mapObjKeyed too. This error/inconsistency should not deter us from naming our functions property. In https://github.com/char0n/ramda-adjunct/issues/66 we want to define predicate called isIndexed. In javascript indexed are Arrays and Strings (Set, Map don’t apply, and objects converts their keys to strings). So in this context and in my mind naming the function mapIndexed is be most correct thing we can do.

Read more comments on GitHub >

github_iconTop Results From Across the Web

mapIndexed - Kotlin Programming Language
Returns a list containing the results of applying the given transform function to each element and its index in the original array.
Read more >
MapIndexed
MapIndexed [f, expr] applies f to the elements of expr, giving the part specification of each element as a second argument to f....
Read more >
Why kotlin map.indexed returns List<Any> insteand of List< ...
The mapIndexed will pass each item, and its index into the Lambda. It then adds the result of the Lambda ...
Read more >
mapIndexed - Kotlin - GitBook
mapIndexed. map 사용중에 인덱스가 필요한 경우 사용한다. public inline fun <T, R> Iterable<T>.mapIndexed(transform: (index: Int, T) -> R): List<R> {.
Read more >
mapIndexed method - IterableExtension extension
Iterable<R> mapIndexed<R>(. R convert(. int index,; T element. ) ) Maps each element and its index to a new value. Implementation.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found