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.
在 SBT 中应该如何处理可选的 SettingKey?
我应该使用 SettingKey[Option[String]] 还是其他?为什么?
如果有一个合理的默认值指示“不存在”,您可以使用它。否则,是的,使用Option,这就是它的用途。sbt 使用的一些标准键Option(例如homepage, publishTo)。
Option
homepage
publishTo
如果您的键使用序列,则可以使用空序列表示缺席。