mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 02:02:18 +00:00
a664a07303
* multi value slice * extract helper function * comments * setup godoc fix * value benchmarks * use guid * fix bug when deleting items * remove callback and rename MultiValue * godoc * tiny change * Nishant's review * typos --------- Co-authored-by: Nishant Das <nishdas93@gmail.com>
24 lines
706 B
Python
24 lines
706 B
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["multi_value_slice.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/v4/container/multi-value-slice",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//container/multi-value-slice/interfaces:go_default_library",
|
|
"@com_github_google_uuid//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["multi_value_slice_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//testing/assert:go_default_library",
|
|
"//testing/require:go_default_library",
|
|
"@com_github_google_uuid//:go_default_library",
|
|
],
|
|
)
|