IsCompound indicates if the sequence expression uses multiple fields for the join link.
()
| 401 | // IsCompound indicates if the sequence expression |
| 402 | // uses multiple fields for the join link. |
| 403 | func (l *SequenceLink) IsCompound() bool { |
| 404 | return len(l.Fields) > 1 |
| 405 | } |
| 406 | |
| 407 | // First returns the first field if the link is not compound. |
| 408 | func (l *SequenceLink) First() string { |
no outgoing calls
no test coverage detected