Regards LM (From mobile) > On Jul 13, 2016, at 2:02 PM, Adrian Zubarev via swift-evolution > <[email protected]> wrote: > > This isn’t a full proposal (yet). We still can change things. I didn’t > consider everything and can’t to that on my own. Feedback is welcome. > > To answer your question, we still need the metatype to access initializer and > static member of that type. If we’d drop T.Type completely, we’d lose > functionality to do so. > > protocol A { > init() > } > > func foo<T : A>(metatype: T.Type) -> T { > return metatype.init() > } > The downside of this proposal is the bottleneck property to access that > functionality, otherwise adding Hashable or other things like size > (MemoryLayout) won’t be possible without serious compiler magic. So do I > believe. > > func foo<T : A>(type: Type<T>) -> T { > return type.metatype.init() > } > This is huge tradeoff, but it’s worth considering if the community can life > with that. > > Furthermore as already been mentioned in this thread, we might consider to > extend Type<T> to add reflection functionality to it. (If we’d decide to go > in that direction.) > IMHO it is not just a matter of 'adding reflection'.. this IS a subset of reflection. The key is to design it question exhaustively enough to leave clean holes for the rest being only additive. Otherwise this will lead the way to more 'oops we have to change the proposal so that what we loose now can be put back additively later' (reference to the recent dance around the labels in sigs proposal that had to be patched post-acceptance)
> > -- > Adrian Zubarev > Sent with Airmail > > Am 13. Juli 2016 um 13:15:02, Anton Zhilin ([email protected]) schrieb: > >> Why can't we drop metatypes T.Type with your proposal? Do they bring some >> extra capabilities over Type<T> struct? > > _______________________________________________ > swift-evolution mailing list > [email protected] > https://lists.swift.org/mailman/listinfo/swift-evolution
_______________________________________________ swift-evolution mailing list [email protected] https://lists.swift.org/mailman/listinfo/swift-evolution
