You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val localeEnum by c.setting("Locale", FormatterConfig.Locales.US, "The regional formatting used for numbers").group(baseGroup).index()
28
+
val localeEnum by c.setting("Locale", FormatterConfig.Locales.US, "The regional formatting used for numbers").group(*baseGroup).index()
29
29
overrideval locale get() = localeEnum.locale
30
30
31
-
val sep by c.setting("Separator", FormatterConfig.TupleSeparator.Comma, "Separator for string serialization of tuple data structures").group(baseGroup).index()
32
-
val customSep by c.setting("Custom Separator", "") { sep ==FormatterConfig.TupleSeparator.Custom }.group(baseGroup).index()
31
+
val sep by c.setting("Separator", FormatterConfig.TupleSeparator.Comma, "Separator for string serialization of tuple data structures").group(*baseGroup).index()
32
+
val customSep by c.setting("Custom Separator", "") { sep ==FormatterConfig.TupleSeparator.Custom }.group(*baseGroup).index()
0 commit comments