()
| 522 | } |
| 523 | |
| 524 | func (msg *GroupMessage) Texts() []string { |
| 525 | texts := make([]string, 0, len(msg.Elements)) |
| 526 | for _, elem := range msg.Elements { |
| 527 | texts = append(texts, ToReadableStringEle(elem)) |
| 528 | } |
| 529 | return texts |
| 530 | } |
| 531 | |
| 532 | func (msg *PrivateMessage) ToString() string { |
| 533 | return ToReadableString(msg.Elements) |
nothing calls this directly
no test coverage detected