Is there any way out? ``` override fun onBindViewH...
# getting-started
m
Is there any way out?
Copy code
override fun onBindViewHolder(holder: NodeHolder<out MdNode>, position: Int) = holder.bind(nodes[position])
nodes
is
List<out MdNode>
, but I know that `node[position]`'s runtime type is suitable for `holder.bind`'s one.