import - What does Scala profile.simple._ means? -


examples like:

import myclass  trait mytrait {      this: myclass =>      import profile.simple_ } 

what profile.simple._ mean?

i tried doesn't work

import myclass.profile.simple._ 

import profile.simple._ 

means import everithing profile.simple package, if have, example, profile.simple.myclass class can access new myclass() , don't need write full path new profile.simple.myclass()


Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -