فهرست منبع

Add `MessageChainBuilder.build`

Him188 6 سال پیش
والد
کامیت
6f5441bf1a
1فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  1. 3 0
      mirai-core/src/commonMain/kotlin/net.mamoe.mirai/message/data/builder.kt

+ 3 - 0
mirai-core/src/commonMain/kotlin/net.mamoe.mirai/message/data/builder.kt

@@ -161,4 +161,7 @@ class MessageChainBuilder private constructor(
         this.flushCache()
         this.flushCache()
         return MessageChainImplByCollection(this) // fast-path, no need to constrain
         return MessageChainImplByCollection(this) // fast-path, no need to constrain
     }
     }
+
+    /** 同 [asMessageChain] */
+    fun build(): MessageChain = asMessageChain()
 }
 }