Strings get all identity strings
()
| 416 | |
| 417 | // Strings get all identity strings |
| 418 | func (m IdentityNodes) Strings() []string { |
| 419 | s := make([]string, len(m)) |
| 420 | for i, in := range m { |
| 421 | s[i] = in.Text |
| 422 | } |
| 423 | return s |
| 424 | } |
| 425 | |
| 426 | // LeftStrings get all Left Identity fields. |
| 427 | func (m IdentityNodes) LeftStrings() []string { |
no outgoing calls