Map
Everything on SkillVeris tagged Map — collected across the glossary, study notes, blog, and cheat sheets.
19 resources across 2 libraries
Study Notes(18)
Transformations: Map, Filter, FlatMap
How to use Flink's core stateless transformation operators — map, filter, and flatMap — to reshape and clean streaming data.
MapReduce Programming Model
A conceptual tour of the map-then-reduce programming model that lets Hadoop process massive datasets by splitting work into independent, parallelizable tasks.
The Map Phase
How Hadoop turns raw input splits into intermediate key-value pairs, including input splitting, mapper lifecycle, local aggregation, and partitioning.
map, filter, reduce in Clojure
Master the three foundational sequence-processing functions that let you transform, select, and accumulate data declaratively instead of writing explicit loops.
Groovy Collections
How Groovy's native list and map literals, GDK methods like collect/findAll/inject/groupBy, ranges, and the spread operator make collection processing concise.
Maps in Erlang
Maps are Erlang's key-value associative data structure, offering dynamic keys, efficient lookups, and pattern matching without requiring a compile-time schema…
split, join, and map
Learn Perl's core list-transformation trio: split to break strings into lists, join to reassemble them, and map to transform every element.
map, filter, and reduce
Master Scala's core higher-order functions for transforming, selecting, and aggregating collections declaratively instead of writing manual loops.
Option and Null Safety
Learn how Scala's Option[T] replaces null with a compiler-checked container type, covering map/flatMap/getOrElse, for-comprehensions, and safe Java interop.
Map and Set in JavaScript
The Map and Set collection types introduced in ES6, their key differences from plain objects and arrays, and common use cases.
Collection Operations in Kotlin (map, filter, fold)
How to transform, filter, and reduce Kotlin collections using functional-style operations like map, filter, and fold.
List, Set, and Map in Kotlin
A detailed look at Kotlin's three core collection types — List, Set, and Map — and how each stores and accesses data.
Collection Operations in Swift (map, filter, reduce)
Master Swift's functional-style collection operations — map, filter, reduce, compactMap, and sorted.
Hash Set and Hash Map Applications
Practical, real-world uses of hash sets and hash maps for deduplication, counting, caching, and fast lookups.
apply, map, and applymap
A practical comparison of pandas' three element-wise transformation tools — Series.map, DataFrame.apply, and the deprecated DataFrame.applymap — and when to re…
Array Functions
Survey PHP's extensive standard-library array functions for transforming, filtering, searching, and reducing arrays without manual loops.
each, map, and select
Master the three most commonly used Enumerable methods — each for side effects, map for transformation, and select for filtering — and when to reach for which.
RxJS Operators for HTTP (map, switchMap, catchError)
Master the core RxJS operators — map, switchMap, catchError, and their flattening cousins — used to transform, chain, and recover from HTTP requests.