sameMessage

This commit is contained in:
InsanusMokrassar 2022-07-11 00:53:20 +06:00
parent 247553d990
commit 26306f1567
2 changed files with 12 additions and 0 deletions

View File

@ -6,6 +6,8 @@
* For `CopyMessage` order of parameters has been changed
* `API`:
* For `copyMessage` order of parameters has been changed
* `Utils`:
* New extension `Message#sameMessage`
## 2.1.3

View File

@ -0,0 +1,10 @@
package dev.inmo.tgbotapi.extensions.utils.extensions
import dev.inmo.tgbotapi.types.message.abstracts.Message
/**
* @return true in case if [this] message is the same as [other]. The same here means that these messages from one chat
* and have equal [Message.messageId] identifier
*/
@Suppress("NOTHING_TO_INLINE")
inline fun Message.sameMessage(other: Message) = chat.id == other.chat.id && messageId == other.messageId