1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2025-09-03 23:29:33 +00:00

sameMessage

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

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