underscore/docs/content/collections/intersperse.md
Ruidy 3617c2de8f
docs: update Last documentation to reflect panic behavior
Document that Last panics on empty slices with a clear error message.
Add examples for single element and empty slice cases.

Related to Issue 13 (PR #41)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-16 08:51:36 +01:00

700 B

title date
Intersperse 2025-01-16T00:00:00-00:00

Intersperse inserts a separator between each element of the slice. Returns an empty slice if the input is empty. Returns the original element if the input has only one element.

package main

import (
 "fmt"
 u "github.com/rjNemo/underscore"
)

func main() {
 nums := []int{1, 2, 3, 4, 5}
 fmt.Println(u.Intersperse(nums, 0)) // [1, 0, 2, 0, 3, 0, 4, 0, 5]

 // Useful for formatting
 words := []string{"apple", "banana", "cherry"}
 fmt.Println(u.Intersperse(words, ",")) // ["apple", ",", "banana", ",", "cherry"]

 // Single element - no separator added
 single := []int{42}
 fmt.Println(u.Intersperse(single, 0)) // [42]
}