array

package
v1.1.0 Latest Latest
Warning

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

Go to latest
Published: Jul 31, 2025 License: MIT Imports: 0 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Contains added in v0.3.0

func Contains[T comparable](slice []T, key T) bool

Contains checks if a given key of any comparable type exists within a slice. It returns true if the key is found, otherwise it returns false.

Time complexity: O(n), where n is the length of the slice. Suitable for small to medium slices or infrequent lookups. For large slices with frequent lookups, consider using a map for better performance.

Parameters:

  • slice: A slice of any comparable type T.
  • key: An element of type T to search for within the slice.

Returns:

  • bool: True if the key is found in the slice, false otherwise.

Types

This section is empty.

Jump to

Keyboard shortcuts

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