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.
20 lines
447 B
20 lines
447 B
package extnet
|
|
|
|
// IDs gets array of ExtNetIDs from ListExtNet struct
|
|
func (le ListExtNet) IDs() []uint64 {
|
|
res := make([]uint64, 0, len(le.Data))
|
|
for _, e := range le.Data {
|
|
res = append(res, e.ID)
|
|
}
|
|
return res
|
|
}
|
|
|
|
// IDs gets array of StaticRouteIDs from ListStaticRoutes struct
|
|
func (lsr ListStaticRoutes) IDs() []uint64 {
|
|
res := make([]uint64, 0, len(lsr.Data))
|
|
for _, sr := range lsr.Data {
|
|
res = append(res, sr.ID)
|
|
}
|
|
return res
|
|
}
|