Is it possible to do something like this at all in swift 4?
extension MyStruct where T: [Object] { }
I thought there has to be a way as this compiles:
let property = MyStruct<[Object]>()
My struct would than look like this:
struct MyStruct<T> { }