Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix example README, add playground (FromSlicePtrOr) #541

Merged
merged 3 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2759,10 +2759,12 @@ Returns a slice with the pointer values or the fallback value.
str1 := "hello"
str2 := "world"

ptr := lo.FromSlicePtrOr[string]([]*string{&str1, &str2, "fallback value"})
ptr := lo.FromSlicePtrOr[string]([]*string{&str1, &str2, nil}, "fallback value")
samber marked this conversation as resolved.
Show resolved Hide resolved
// []string{"hello", "world", "fallback value"}
```

[[play](https://go.dev/play/p/lbunFvzlUDX)]

### ToAnySlice

Returns a slice with all elements mapped to `any` type.
Expand Down
1 change: 1 addition & 0 deletions type_manipulation.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ func FromSlicePtr[T any](collection []*T) []T {
}

// FromSlicePtrOr returns a slice with the pointer values or the fallback value.
// Play: https://go.dev/play/p/lbunFvzlUDX
func FromSlicePtrOr[T any](collection []*T, fallback T) []T {
return Map(collection, func(x *T, _ int) T {
if x == nil {
Expand Down