本文整理匯總了Golang中github.com/corestoreio/csfw/utils.StringSlice.Include方法的典型用法代碼示例。如果您正苦於以下問題:Golang StringSlice.Include方法的具體用法?Golang StringSlice.Include怎麽用?Golang StringSlice.Include使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/corestoreio/csfw/utils.StringSlice
的用法示例。
在下文中一共展示了StringSlice.Include方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: defaultIsCountryAllowed
func defaultIsCountryAllowed(_ *store.Store, c *IPCountry, allowedCountries utils.StringSlice, r *http.Request) bool {
if false == allowedCountries.Include(c.Country.Country.IsoCode) {
if PkgLog.IsInfo() {
PkgLog.Info("geoip.checkAllow", "IPCountry", c, "allowedCountries", allowedCountries, "request", r)
}
return false
}
return true
}
示例2: TestStringSlice
func TestStringSlice(t *testing.T) {
l := utils.StringSlice{"Maybe", "GoLang", "should", "have", "generics", "but", "who", "needs", "them", "?", ";-)"}
assert.Len(t, l, l.Len())
assert.Equal(t, 1, l.Index("GoLang"))
assert.Equal(t, -1, l.Index("Golang"))
assert.True(t, l.Include("GoLang"))
assert.False(t, l.Include("Golang"))
l2 := utils.StringSlice{"Maybe", "GoLang"}
l2.Map(func(s string) string {
return s + "2"
})
assert.Equal(t, []string{"Maybe2", "GoLang2"}, l2.ToString())
l2.Append("will", "be")
assert.Equal(t, []string{"Maybe2", "GoLang2", "will", "be"}, l2.ToString())
}