Hi. Can someone tell me how to get a reference to ...
# getting-started
p
Hi. Can someone tell me how to get a reference to the class container from the companion object? https://www.screencast.com/t/Txhuy9WiQ
m
pserzh: impossible: companion is a singleton (equivalent of static members), but class can have many instances. Which means that you can access companion from class, not vice versa.
p
@miha-x64 thanks for your answer