I'd like to call from java `glm.mul(..)` where `mu...
# getting-started
e
I'd like to call from java
glm.mul(..)
where
mul(...)
is a function of the interface
mat2x2_operators
but if I have this:
Copy code
interface glm {

    companion object :
            mat2x2_operators,
I have
mul
available through
glm.Companion.mul(...)
If I convert
glm
to
object
instead, I have
glm.INSTANCE.mul(...)