downcast

inline fun <T, R> Dataset<T>.downcast(): Dataset<R>

Deprecated (with error)

Deprecated, since we already have `as`() and to().

Replace with

this.to<R>()

DEPRECATED: Use as or to for this.