MCPcopy Create free account
hub / github.com/rclone/rclone / ValidStrings

Function ValidStrings

lib/encoder/encoder.go:155–162  ·  view source on GitHub ↗

ValidStrings returns all the valid MultiEncoder strings

()

Source from the content-addressed store, hash-verified

153
154// ValidStrings returns all the valid MultiEncoder strings
155func ValidStrings() string {
156 var out []string
157 for k := range nameToEncoding {
158 out = append(out, k)
159 }
160 sort.Strings(out)
161 return strings.Join(out, ", ")
162}
163
164// String converts the MultiEncoder into text
165func (mask MultiEncoder) String() string {

Callers 2

SprintListFunction · 0.92
SetMethod · 0.85

Calls 1

JoinMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…