if I add some extension functions to make `Number`...
# getting-started
r
if I add some extension functions to make
Number
have div/mul/add/sub operations, will I need to import that into every single file where I use Number? Or can I make it a global builtin
y
You'll need to import it yes, but Intellij is pretty smart about this and should auto-import them when needed
2
a
when I have a lot of functions in a single package I find it helps to manually add that package to "Packages to Use Import with '*'" in IJ, then when you import one you get the rest as well Settings | Editor | Code Style | Kotlin
👍 1