Does using a companion object (or other object dec...
# getting-started
a
Does using a companion object (or other object decl) within a value class change how it is boxed / wrapped, like
Copy code
@JvmInline
value class Foo(val value:String) {
    companion object : Mapper {
        ….
    }
}