stringkeyed

package
v0.0.0-...-079db16 Latest Latest
Warning

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

Go to latest
Published: May 12, 2024 License: MIT Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Set

type Set struct {
	// contains filtered or unexported fields
}

Set is a set of strings that is comparable with == and !=. The zero value is a valid and empty set.

func SetOf

func SetOf(elems ...string) (s Set)

SetOf returns a new Set containing the provided elements.

func (*Set) Add

func (s *Set) Add(elems ...string)

Add turns s into the union of s and the provided elements.

func (Set) Cardinality

func (s Set) Cardinality() int

Cardinality returns the number of elements in s. It is more efficient than computing the length of the slice returned by ToSlice.

func (Set) MarshalJSON

func (s Set) MarshalJSON() ([]byte, error)

func (Set) ToSlice

func (s Set) ToSlice() []string

ToSlice returns a sorted slice of the elements in s.

func (*Set) UnmarshalJSON

func (s *Set) UnmarshalJSON(b []byte) error

Jump to

Keyboard shortcuts

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