i want to add `get` operator to my type and do som...
# announcements
q
i want to add
get
operator to my type and do something like this
array["a", true, null, 1]
k
And what's the problem?
q
i always need to add the brackets
array()["", 1, true, null]
k
What kind of object is
array
?
q
like this
Copy code
object array {
    operator fun get(vararg values: Any?) = values
}
but without an
object
with inline builder
actually this idea was bad, coze it not so comfortable to build json like this