``` class SpecialCollection private constructor (p...
# announcements
e
Copy code
class SpecialCollection private constructor (private val collection: Collection): Collection by collection {
    constructor() : this(Collection())
}
Something like this? (free-handed the syntax)