Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望在新行上生成所有函数参数,如下所示:
fun test( a: Int, b: Int, c: Int )
我怎样才能做到这一点?目前参数列表任意换行。我有未知数量的函数参数要生成。
现在,如果函数有超过 2 个参数,每个参数将出现在新的一行,否则函数签名将打印在一行。我们不提供用于修改此行为的 API。