MCPcopy Create free account
hub / github.com/ZeppelinMC/Zeppelin / At

Method At

server/command/command.go:19–24  ·  view source on GitHub ↗
(i int)

Source from the content-addressed store, hash-verified

17type Arguments []string
18
19func (a Arguments) At(i int) string {
20 if i < 0 || len(a) <= i {
21 return ""
22 }
23 return a[i]
24}
25
26func (a Arguments) Fallback(i int, fb string) string {
27 if i < 0 || len(a) <= i {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected