On Tue, Sep 11, 2018 at 6:22 PM, Patrick Smith <pat42sm...@gmail.com> wrote: > > This is a hypothetical question. Suppose generics were implemented as in the > draft proposal, but without contracts. Instead, the rule is that if an > instantiation of a generic function with a specific type argument doesn't > compile, then it can't be used. > > Under those circumstances, is there any way to write a function > > func Min(type T) (a, b T) T {...} > > > that returns the smaller of its two arguments, and meets _all_ of these > criteria? > > 1) If a specific type X has a suitable Less() method, then Min(X) uses that. > 2) Otherwise, if the < operator can be applied to X, then Min(X) uses that. > 3) Otherwise, any use of Min(X) fails to compile. (A run-time panic does not > satisfy this criterion.) > > By "X has a suitable Less() method", I mean that this function should > compile successfully: > > func XMin(a, b X) bool { > > return a.Less(b) > } > > > I'm fairly sure there's no way to write Min, but perhaps someone can prove > me wrong? > > (With contracts I'm doubly sure it can't be done, as the contract for Min > would have to permit both Less and <, so then Min(X) would only be allowed > for types X having both Less and <.)
I don't think there is any way to solve this problem as stated without taking a step toward metaprogramming: making decisions at compile time. You need to have a way to say "compile this code under certain conditions based on the type argument, otherwise compile this code." That is, the compiler is directed, at compile time, as to which code should be compiled. That is metaprogramming. In C++, which has very powerful metaprogramming capabilities this kind of thing is done via template specialization and SFINAE. Personally I don't think this is a direction that Go should take. That said, if we move forward with something like contracts, I think that it may be possible to introduce contract adaptors in the future: a mechanism that says "if the type argument does not implement contract C1, but does implement contract C2, then use this code to implement the requirements of C1 in terms of C2." This sort of automatically applied adaptor code seems to me to be less potentially confusing than metaprogramming. Maybe. I'm not at all sure. Ian -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.