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 sep
|
|
|
|
// IDs gets array of SEPIDs from ListSEP struct
|
|
func (ls ListSEP) IDs() []uint64 {
|
|
res := make([]uint64, 0, len(ls.Data))
|
|
for _, s := range ls.Data {
|
|
res = append(res, s.ID)
|
|
}
|
|
return res
|
|
}
|