當前位置: 首頁>>代碼示例>>Golang>>正文


Golang StringSlice.Unique方法代碼示例

本文整理匯總了Golang中github.com/corestoreio/csfw/util.StringSlice.Unique方法的典型用法代碼示例。如果您正苦於以下問題:Golang StringSlice.Unique方法的具體用法?Golang StringSlice.Unique怎麽用?Golang StringSlice.Unique使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/corestoreio/csfw/util.StringSlice的用法示例。


在下文中一共展示了StringSlice.Unique方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: BenchmarkStringSliceUnique

// BenchmarkStringSliceUnique	 2000000	       612 ns/op	     160 B/op	       2 allocs/op <- Go 1.4.2
// BenchmarkStringSliceUnique  	10000000	       179 ns/op	     128 B/op	       1 allocs/op <- Go 1.5
func BenchmarkStringSliceUnique(b *testing.B) {
	b.ReportAllocs()
	for i := 0; i < b.N; i++ {
		l := util.StringSlice{"Maybe", "GoLang", "GoLang", "GoLang", "or", "or", "RostLang", "RostLang"}
		l.Unique()
		benchStringSliceUnique = l
	}
}
開發者ID:joao-parana,項目名稱:csfw,代碼行數:10,代碼來源:string_slice_test.go

示例2: getImportPaths

func getImportPaths() []string {
	var paths util.StringSlice

	var getPath = func(s string) string {
		ps, err := codegen.ExtractImportPath(s)
		codegen.LogFatal(err)
		return ps
	}

	for _, et := range codegen.ConfigEntityType {
		paths.Append(
			getPath(et.EntityModel),
			getPath(et.AttributeModel),
			getPath(et.EntityTable),
			getPath(et.IncrementModel),
			getPath(et.AdditionalAttributeTable),
			getPath(et.EntityAttributeCollection),
		)
	}
	return paths.Unique().ToString()
}
開發者ID:joao-parana,項目名稱:csfw,代碼行數:21,代碼來源:entity_type.go

示例3: TestStringSliceUnique

func TestStringSliceUnique(t *testing.T) {
	l := util.StringSlice{"Maybe", "GoLang", "GoLang", "GoLang", "or", "or", "RostLang", "RostLang"}
	assert.Equal(t, []string{"Maybe", "GoLang", "or", "RostLang"}, l.Unique().ToString())
}
開發者ID:joao-parana,項目名稱:csfw,代碼行數:4,代碼來源:string_slice_test.go


注:本文中的github.com/corestoreio/csfw/util.StringSlice.Unique方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。