Hi, I’m really liking Julia so far, but the documentation on the usage of where has me confused (despite finding a few posts here discussing it).
What would be the difference between:
same_type(x::T, y::T) where {T} = true
and
same_type(x::T, y::T) where T = true?
Thanks