MCPcopy Create free account
hub / github.com/IceFireDB/IceFireDB / StringSet

Function StringSet

IceFireDB-PubSub/test/proto/types.go:103–109  ·  view source on GitHub ↗

StringSet is a wrapper to get a set of (bulk)strings.

(args ...string)

Source from the content-addressed store, hash-verified

101
102// StringSet is a wrapper to get a set of (bulk)strings.
103func StringSet(args ...string) string {
104 var strings []string
105 for _, a := range args {
106 strings = append(strings, String(a))
107 }
108 return Set(strings...)
109}

Callers 1

TestTypesFunction · 0.70

Calls 2

StringFunction · 0.70
SetFunction · 0.70

Tested by 1

TestTypesFunction · 0.56