()
| 542 | } |
| 543 | |
| 544 | func (msg *PrivateMessage) Texts() []string { |
| 545 | texts := make([]string, 0, len(msg.Elements)) |
| 546 | for _, elem := range msg.Elements { |
| 547 | texts = append(texts, ToReadableStringEle(elem)) |
| 548 | } |
| 549 | return texts |
| 550 | } |
| 551 | |
| 552 | func (msg *TempMessage) ToString() string { |
| 553 | return ToReadableString(msg.Elements) |
nothing calls this directly
no test coverage detected