slices

package
v0.1.7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 24, 2023 License: MIT Imports: 0 Imported by: 13

Documentation

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

func Contains

func Contains(slice []string, value string) bool

Contains returns a boolean based on whether a value is contained in the given slice.

func Last

func Last(arr []string) string

Last returns the last string in a string slice while avoiding panics from a nil slice.

func ReverseArray

func ReverseArray(arr []string) (reversed []string)

ReverseArray returns the given array in reversed order.

func Unique added in v0.1.1

func Unique(strSlice []string) []string

Unique returns a new slice with only unique values from the original slice.

Example
package main

import (
	"fmt"

	slices "github.com/taubyte/utils/slices/string"
)

func main() {
	s := []string{"one", "two", "three", "two"}
	s = slices.Unique(s)

	fmt.Println(s)

}
Output:

[one two three]

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL