Persona: You are a Go engineer who prefers declarative collection transforms over manual loops. You reach for lo to eliminate boilerplate, but you know when the stdlib is enough and when to upgrade to lop, lom, or loi.
samber/lo — Functional Utilities for Go
Lodash-inspired, generics-first utility library with 500+ type-safe helpers for slices, maps, strings, math, channels, tuples, and concurrency. Zero external dependencies. Immutable by default.
Official Resources:
This skill is not exhaustive — refer to library documentation and code examples for more information:
- For Go package docs, symbols, versions, importers, and known vulnerabilities, → See
samber/cc-skills-golang@golang-pkg-go-dev skill (godig), preferred over Context7 for Go package facts.
- To navigate this library's usage in your own code (definitions, call sites, diagnostics), → See
samber/cc-skills-golang@golang-gopls skill (gopls).
- Context7 remains a fallback for docs not indexed on pkg.go.dev.
Why samber/lo
Go's stdlib slices and maps packages cover ~10 basic helpers (sort, contains, keys). Everything else — Map, Filter, Reduce, GroupBy, Chunk, Flatten, Zip — requires manual for-loops. lo fills this gap:
- Type-safe generics — no
interface{} casts, no reflection, compile-time checking, no interface boxing overhead
- Immutable by default — returns new collections, safe for concurrent reads, easier to reason about
- Composable — functions take and return slices/maps, so they chain without wrapper types
- Zero dependencies — only Go stdlib, no transitive dependency risk
- Progressive complexity — start with
lo, upgrade to lop/lom/loi only when profiling demands it
- Error variants — most functions have
Err suffixes (MapErr, FilterErr, ReduceErr) that stop on first error
Installation
go get github.com/samber/lo
| Package |
Import |
Alias |
Go version |
| Core (immutable) |
github.com/samber/lo |
lo |
1.18+ |
| Parallel |
github.com/samber/lo/parallel |
lop |
1.18+ |
| Mutable |
github.com/samber/lo/mutable |
lom |
1.18+ |
| Iterator |
github.com/samber/lo/it |
loi |
1.23+ |
| SIMD (experimental) |
github.com/samber/lo/exp/simd |
— |
1.25+ (amd64 only) |
Choose the Right Package
Start with lo. Move to other packages only when profiling shows a bottleneck or when lazy evaluation is explicitly needed.
| Package |
Use when |
Trade-off |
lo |
Default for all transforms |
Allocates new collections (safe, predictable) |
lop |
CPU-bound work on large datasets (1000+ items) |
Goroutine overhead; not for I/O or small slices |
lom |
Hot path confirmed by pprof -alloc_objects |
Mutates input — caller must understand side effects |
loi |
Large datasets with chained transforms (Go 1.23+) |
Lazy evaluation saves memory but adds iterator complexity |
simd |
Numeric bulk ops after benchmarking (experimental) |
Unstable API, may break between versions |
Key rules:
lop is for CPU parallelism, not I/O concurrency — for I/O fan-out, use errgroup instead
lom breaks immutability — only use when allocation pressure is measured, never assumed
loi eliminates intermediate allocations in chains like Map → Filter → Take by evaluating lazily
- For reactive/streaming pipelines over infinite event streams, → see
samber/cc-skills-golang@golang-samber-ro skill + samber/ro package
For detailed package comparison and decision flowchart, see Package Guide.
Core Patterns
Transform a slice
// ✓ lo — declarative, type-safe
names := lo.Map(users, func(u User, _ int) string {
return u.Name
})
// ✗ Manual — boilerplate, error-prone
names := make([]string, 0, len(users))
for _, u := range users {
names = append(names, u.Name)
}
Filter + Reduce
total := lo.Reduce(
lo.Filter(orders, func(o Order, _ int) bool {
return o.Status == "paid"
}),
func(sum float64, o Order, _ int) float64 {
return sum + o.Amount
},
0,
)
GroupBy
byStatus := lo.GroupBy(tasks, func(t Task, _ int) string {
return t.Status
})
// map[string][]Task{"open": [...], "closed": [...]}
Error variant — stop on first error
results, err := lo.MapErr(urls, func(url string, _ int) (Response, error) {
return http.Get(url)
})
Common Mistakes
| Mistake |
Why it fails |
Fix |
Using lo.Contains when slices.Contains exists |
Unnecessary dependency for a stdlib-covered op |
Prefer slices.Contains/slices.Sort since Go 1.21+ and slices.Collect(maps.Keys(m)) since Go 1.23+ when a key slice is needed |
Using lop.Map on 10 items |
Goroutine creation overhead exceeds transform cost |
Use lo.Map — lop benefits start at ~1000+ items for CPU-bound work |
Assuming lo.Filter modifies the input |
lo is immutable by default — it returns a new slice |
Use lom.Filter if you explicitly need in-place mutation |
Using lo.Must in production code paths |
Must panics on error — fine in tests and init, dangerous in request handlers |
Use the non-Must variant and handle the error |
| Chaining many eager transforms on large data |
Each step allocates an intermediate slice |
Use loi (lazy iterators) to avoid intermediate allocations |
Best Practices
- Prefer stdlib when available —
slices.Contains and slices.Sort (Go 1.21+) carry no dependency; maps.Keys is Go 1.23+ and returns an iterator, so use slices.Collect(maps.Keys(m)) when you need a slice. Use lo for transforms the stdlib doesn't offer (Map, Filter, Reduce, GroupBy, Chunk, Flatten)
- Compose lo functions — chain
lo.Filter → lo.Map → lo.GroupBy instead of writing nested loops. Each function is a building block
- Profile before optimizing — switch from
lo to lom/lop only after go tool pprof confirms allocation or CPU as the bottleneck
- Use error variants — prefer
lo.MapErr over lo.Map + manual error collection. Error variants stop early and propagate cleanly
- Use
lo.Must only in tests and init — in production, handle errors explicitly
Quick Reference
| Function |
What it does |
lo.Map |
Transform each element |
lo.Filter / lo.Reject |
Keep / remove elements matching predicate |
lo.Reduce |
Fold elements into a single value |
lo.ForEach |
Side-effect iteration |
lo.GroupBy |
Group elements by key |
lo.Chunk |
Split into fixed-size batches |
lo.Flatten |
Flatten nested slices one level |
lo.Uniq / lo.UniqBy |
Remove duplicates |
lo.Find / lo.FindOrElse |
First match or default |
lo.Contains / lo.Every / lo.Some |
Membership tests |
lo.Keys / lo.Values |
Extract map keys or values |
lo.PickBy / lo.OmitBy |
Filter map entries |
lo.Zip2 / lo.Unzip2 |
Pair/unpair two slices |
lo.Range / lo.RangeFrom |
Generate number sequences |
lo.Ternary / lo.If |
Inline conditionals |
lo.ToPtr / lo.FromPtr |
Pointer helpers |
lo.Must / lo.Try |
Panic-on-error / recover-as-bool |
lo.Async / lo.Attempt |
Async execution / retry with backoff |
lo.Debounce / lo.Throttle |
Rate limiting |
lo.ChannelDispatcher |
Fan-out to multiple channels |
For the complete function catalog (300+ functions), see API Reference.
For composition patterns, stdlib interop, and iterator pipelines, see Advanced Patterns.
If you encounter a bug or unexpected behavior in samber/lo, open an issue at github.com/samber/lo/issues.
Cross-References
- → See
samber/cc-skills-golang@golang-samber-ro skill for reactive/streaming pipelines over infinite event streams (samber/ro package)
- → See
samber/cc-skills-golang@golang-samber-mo skill for monadic types (Option, Result, Either) that compose with lo transforms
- → See
samber/cc-skills-golang@golang-data-structures skill for choosing the right underlying data structure
- → See
samber/cc-skills-golang@golang-performance skill for profiling methodology before switching to lom/lop
1---2name: golang-samber-lo3description: Functional programming helpers for Golang using samber/lo — 500+ type-safe generic functions for slices, maps, channels, strings, math, tuples, and concurrency (Map, Filter, Reduce, GroupBy, Chunk, Flatten, Find, Uniq, etc.). Core immutable package (lo), concurrent variants (lo/parallel aka lop), in-place mutations (lo/mutable aka lom), lazy iterators (lo/it aka loi for Go 1.23+), and experimental SIMD (lo/exp/simd). Apply when using or adopting samber/lo, when the codebase imports github.com/samber/lo, or when implementing functional-style data transformations in Go. Not for streaming pipelines (→ See `samber/cc-skills-golang@golang-samber-ro` skill).4license: MIT5---6
7**Persona:** You are a Go engineer who prefers declarative collection transforms over manual loops. You reach for `lo` to eliminate boilerplate, but you know when the stdlib is enough and when to upgrade to `lop`, `lom`, or `loi`.
8
9# samber/lo — Functional Utilities for Go
10
11Lodash-inspired, generics-first utility library with 500+ type-safe helpers for slices, maps, strings, math, channels, tuples, and concurrency. Zero external dependencies. Immutable by default.
12
13**Official Resources:**
14
15- [github.com/samber/lo](https://github.com/samber/lo)
16- [lo.samber.dev](https://lo.samber.dev)
17- [pkg.go.dev/github.com/samber/lo](https://pkg.go.dev/github.com/samber/lo)
18
19This skill is not exhaustive — refer to library documentation and code examples for more information:
20
21- For Go package docs, symbols, versions, importers, and known vulnerabilities, → See `samber/cc-skills-golang@golang-pkg-go-dev` skill (`godig`), preferred over Context7 for Go package facts.
22- To navigate this library's usage in your own code (definitions, call sites, diagnostics), → See `samber/cc-skills-golang@golang-gopls` skill (`gopls`).
23- Context7 remains a fallback for docs not indexed on pkg.go.dev.
24
25## Why samber/lo
26
27Go's stdlib `slices` and `maps` packages cover ~10 basic helpers (sort, contains, keys). Everything else — Map, Filter, Reduce, GroupBy, Chunk, Flatten, Zip — requires manual for-loops. `lo` fills this gap:
28
29- **Type-safe generics** — no `interface{}` casts, no reflection, compile-time checking, no interface boxing overhead
30- **Immutable by default** — returns new collections, safe for concurrent reads, easier to reason about
31- **Composable** — functions take and return slices/maps, so they chain without wrapper types
32- **Zero dependencies** — only Go stdlib, no transitive dependency risk
33- **Progressive complexity** — start with `lo`, upgrade to `lop`/`lom`/`loi` only when profiling demands it
34- **Error variants** — most functions have `Err` suffixes (`MapErr`, `FilterErr`, `ReduceErr`) that stop on first error
35
36## Installation
37
38```bash
39go get github.com/samber/lo
40```
41
42| Package | Import | Alias | Go version |
43| --- | --- | --- | --- |
44| Core (immutable) | `github.com/samber/lo` | `lo` | 1.18+ |
45| Parallel | `github.com/samber/lo/parallel` | `lop` | 1.18+ |
46| Mutable | `github.com/samber/lo/mutable` | `lom` | 1.18+ |
47| Iterator | `github.com/samber/lo/it` | `loi` | 1.23+ |
48| SIMD (experimental) | `github.com/samber/lo/exp/simd` | — | 1.25+ (amd64 only) |
49
50## Choose the Right Package
51
52Start with `lo`. Move to other packages only when profiling shows a bottleneck or when lazy evaluation is explicitly needed.
53
54| Package | Use when | Trade-off |
55| --- | --- | --- |
56| `lo` | Default for all transforms | Allocates new collections (safe, predictable) |
57| `lop` | CPU-bound work on large datasets (1000+ items) | Goroutine overhead; not for I/O or small slices |
58| `lom` | Hot path confirmed by `pprof -alloc_objects` | Mutates input — caller must understand side effects |
59| `loi` | Large datasets with chained transforms (Go 1.23+) | Lazy evaluation saves memory but adds iterator complexity |
60| `simd` | Numeric bulk ops after benchmarking (experimental) | Unstable API, may break between versions |
61
62**Key rules:**
63
64- `lop` is for CPU parallelism, not I/O concurrency — for I/O fan-out, use `errgroup` instead
65- `lom` breaks immutability — only use when allocation pressure is measured, never assumed
66- `loi` eliminates intermediate allocations in chains like `Map → Filter → Take` by evaluating lazily
67- For reactive/streaming pipelines over infinite event streams, → see `samber/cc-skills-golang@golang-samber-ro` skill + `samber/ro` package
68
69For detailed package comparison and decision flowchart, see [Package Guide](./references/package-guide.md).
70
71## Core Patterns
72
73### Transform a slice
74
75```go
76// ✓ lo — declarative, type-safe
77names := lo.Map(users, func(u User, _ int) string {
78 return u.Name
79})
80
81// ✗ Manual — boilerplate, error-prone
82names := make([]string, 0, len(users))
83for _, u := range users {
84 names = append(names, u.Name)
85}
86```
87
88### Filter + Reduce
89
90```go
91total := lo.Reduce(
92 lo.Filter(orders, func(o Order, _ int) bool {
93 return o.Status == "paid"
94 }),
95 func(sum float64, o Order, _ int) float64 {
96 return sum + o.Amount
97 },
98 0,
99)
100```
101
102### GroupBy
103
104```go
105byStatus := lo.GroupBy(tasks, func(t Task, _ int) string {
106 return t.Status
107})
108// map[string][]Task{"open": [...], "closed": [...]}
109```
110
111### Error variant — stop on first error
112
113```go
114results, err := lo.MapErr(urls, func(url string, _ int) (Response, error) {
115 return http.Get(url)
116})
117```
118
119## Common Mistakes
120
121| Mistake | Why it fails | Fix |
122| --- | --- | --- |
123| Using `lo.Contains` when `slices.Contains` exists | Unnecessary dependency for a stdlib-covered op | Prefer `slices.Contains`/`slices.Sort` since Go 1.21+ and `slices.Collect(maps.Keys(m))` since Go 1.23+ when a key slice is needed |
124| Using `lop.Map` on 10 items | Goroutine creation overhead exceeds transform cost | Use `lo.Map` — `lop` benefits start at ~1000+ items for CPU-bound work |
125| Assuming `lo.Filter` modifies the input | `lo` is immutable by default — it returns a new slice | Use `lom.Filter` if you explicitly need in-place mutation |
126| Using `lo.Must` in production code paths | `Must` panics on error — fine in tests and init, dangerous in request handlers | Use the non-Must variant and handle the error |
127| Chaining many eager transforms on large data | Each step allocates an intermediate slice | Use `loi` (lazy iterators) to avoid intermediate allocations |
128
129## Best Practices
130
1311. **Prefer stdlib when available** — `slices.Contains` and `slices.Sort` (Go 1.21+) carry no dependency; `maps.Keys` is Go 1.23+ and returns an iterator, so use `slices.Collect(maps.Keys(m))` when you need a slice. Use `lo` for transforms the stdlib doesn't offer (Map, Filter, Reduce, GroupBy, Chunk, Flatten)
1322. **Compose lo functions** — chain `lo.Filter` → `lo.Map` → `lo.GroupBy` instead of writing nested loops. Each function is a building block
1333. **Profile before optimizing** — switch from `lo` to `lom`/`lop` only after `go tool pprof` confirms allocation or CPU as the bottleneck
1344. **Use error variants** — prefer `lo.MapErr` over `lo.Map` + manual error collection. Error variants stop early and propagate cleanly
1355. **Use `lo.Must` only in tests and init** — in production, handle errors explicitly
136
137## Quick Reference
138
139| Function | What it does |
140| --- | --- |
141| `lo.Map` | Transform each element |
142| `lo.Filter` / `lo.Reject` | Keep / remove elements matching predicate |
143| `lo.Reduce` | Fold elements into a single value |
144| `lo.ForEach` | Side-effect iteration |
145| `lo.GroupBy` | Group elements by key |
146| `lo.Chunk` | Split into fixed-size batches |
147| `lo.Flatten` | Flatten nested slices one level |
148| `lo.Uniq` / `lo.UniqBy` | Remove duplicates |
149| `lo.Find` / `lo.FindOrElse` | First match or default |
150| `lo.Contains` / `lo.Every` / `lo.Some` | Membership tests |
151| `lo.Keys` / `lo.Values` | Extract map keys or values |
152| `lo.PickBy` / `lo.OmitBy` | Filter map entries |
153| `lo.Zip2` / `lo.Unzip2` | Pair/unpair two slices |
154| `lo.Range` / `lo.RangeFrom` | Generate number sequences |
155| `lo.Ternary` / `lo.If` | Inline conditionals |
156| `lo.ToPtr` / `lo.FromPtr` | Pointer helpers |
157| `lo.Must` / `lo.Try` | Panic-on-error / recover-as-bool |
158| `lo.Async` / `lo.Attempt` | Async execution / retry with backoff |
159| `lo.Debounce` / `lo.Throttle` | Rate limiting |
160| `lo.ChannelDispatcher` | Fan-out to multiple channels |
161
162For the complete function catalog (300+ functions), see [API Reference](./references/api-reference.md).
163
164For composition patterns, stdlib interop, and iterator pipelines, see [Advanced Patterns](./references/advanced-patterns.md).
165
166If you encounter a bug or unexpected behavior in samber/lo, open an issue at [github.com/samber/lo/issues](https://github.com/samber/lo/issues).
167
168## Cross-References
169
170- → See `samber/cc-skills-golang@golang-samber-ro` skill for reactive/streaming pipelines over infinite event streams (`samber/ro` package)
171- → See `samber/cc-skills-golang@golang-samber-mo` skill for monadic types (Option, Result, Either) that compose with lo transforms
172- → See `samber/cc-skills-golang@golang-data-structures` skill for choosing the right underlying data structure
173- → See `samber/cc-skills-golang@golang-performance` skill for profiling methodology before switching to `lom`/`lop`