github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/pkg/graphql/spec_format.go (about) 1 package graphql 2 3 func (f SpecFormat) isOneOf(formats []SpecFormat) bool { 4 for _, value := range formats { 5 if value == f { 6 return true 7 } 8 } 9 return false 10 }