You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package lb
|
|
|
|
// IDs gets array of LBIDs from ListLB struct
|
|
func (llb ListLB) IDs() []uint64 {
|
|
res := make([]uint64, 0, len(llb.Data))
|
|
for _, lb := range llb.Data {
|
|
res = append(res, lb.ID)
|
|
}
|
|
return res
|
|
}
|