zlacker

[parent] [thread] 14 comments
1. gslall+(OP)[view] [source] 2024-02-24 09:47:08
> func Index[S ~[]E, E comparable](s S, v E) int {

After seeing this signature, I think that Go is giving up on it's simpleness principle.

replies(4): >>quickt+J2 >>richri+N2 >>JyB+N5 >>__s+pc
2. quickt+J2[view] [source] 2024-02-24 10:30:40
>>gslall+(OP)
what does the ~ do here anyway?
replies(1): >>onefiv+D3
3. richri+N2[view] [source] 2024-02-24 10:31:59
>>gslall+(OP)
I was quite upset that they introduced generics. It is slow marching into C++ like look and feel and all the eyesore that it entails.
replies(1): >>quickt+c4
◧◩
4. onefiv+D3[view] [source] [discussion] 2024-02-24 10:44:03
>>quickt+J2
type Something []string

ensure that the underlying type is a slice

replies(1): >>shakow+j4
◧◩
5. quickt+c4[view] [source] [discussion] 2024-02-24 10:53:10
>>richri+N2
In C# I feel you needed generics because there was no resizable array without casting from object (the Pareto 80-20 use case) and later async and Task<T> but I don’t think these problems apply to Go so it could have done without it (maybe!). Non userspace generics may be where it is at to ease suffering in places.

As a language design though Elm remains remarkably simple with parametric polymorphism (aka Generics) but it needs other design choices to do so. Elm is the Go of Haskell :-)

◧◩◪
6. shakow+j4[view] [source] [discussion] 2024-02-24 10:55:22
>>onefiv+D3
Why do you need a tilda for `S ~[]E`, but not for `E comparable`?

Both are type-constraining annotations, so why two syntaxes?

replies(3): >>quickt+u4 >>therei+65 >>ithkui+V6
◧◩◪◨
7. quickt+u4[view] [source] [discussion] 2024-02-24 10:58:00
>>shakow+j4
Guessing that E is the element, so is not a slice (or more accurately we don’t care if it is a slice or not!)
◧◩◪◨
8. therei+65[view] [source] [discussion] 2024-02-24 11:05:36
>>shakow+j4
It is like S: where S = []E where E: comperable.

I like the way Rust has it a lot more but it is still imperfect and feels arbitrary in ways.

I find myself unsure where to put the templatization parameters and it doesn't feel perfectly symmetrical.

Unsure if impl MyType<T> where T: X

is comperable to impl MyType<T: X> Sometimes it needs impl<T> MyType<T> where T: X

replies(1): >>shakow+e6
9. JyB+N5[view] [source] 2024-02-24 11:18:05
>>gslall+(OP)
They shot themselves in the foot when they forced themselves to add generics based on bogus surveys.
replies(2): >>erik_s+9k1 >>adrian+lt2
◧◩◪◨⬒
10. shakow+e6[view] [source] [discussion] 2024-02-24 11:22:23
>>therei+65
Agreed, the Rust syntax is no golden standard either - but at least it's regular; this one really weirds me out.
◧◩◪◨
11. ithkui+V6[view] [source] [discussion] 2024-02-24 11:34:22
>>shakow+j4
Because when you define a "type Foo []int" you're definig a new type Foo that is not the same type as []int.

So if the type parameter said "[]E" where E is a comparable then "Foo" wouldn't be allowed because Foo is not the same type as "[]int" (for that you'd need a type alias i.e "type Foo = []int". This is by design since it allows you to define new types you don't want to get accidentally used where you don't want them to.

When defining library functions that are truly generic you may want instead to let them be used on the "underlying type". For example, Sort library authors decided that generally you want it to just work on the underlying type and that's why they added ~ in front of the generic type. Otherwise every invocation of Sort you'd need to convert the type e.g. "slices.Sort([]int(myfoo))".

The other type parameter "E comparable" doesn't need the tilde because "comparable" is not an actual type but a type constraint.

A type constraint is an interface that defines the set of permissible type arguments for the respective type parameter and controls the operations supported by values of that type parameter.

You don't need a tilde because any type that implements that constraint will be accepted. Also any type implementing a constraint that embeds that constraint also works

12. __s+pc[view] [source] 2024-02-24 12:55:58
>>gslall+(OP)
Generics can be a bit of an eye sore, but go already had reflection & I recently was mucking around bigquery's internals full of `reflect` having to read through that, & it doesn't even get backed by a type checker

`func Index(s interface{}, v interface{}) int` both has to deal with incompatible types, & the function body is going to be anything but simple

(sure, without generics most people wouldn't even write that `func Index`, but ultimately there's plenty of libraries deep in reflect that'd greatly benefit from generics)

I've also been dealing with temporal.io using interface{} everywhere, got to a point where I wrote typed wrappers using generics to have type checking for signals

◧◩
13. erik_s+9k1[view] [source] [discussion] 2024-02-24 21:59:22
>>JyB+N5
Anything reusable must be generic; that’s a cost of static typing.
◧◩
14. adrian+lt2[view] [source] [discussion] 2024-02-25 11:21:27
>>JyB+N5
Why were the surveys bogus?
replies(1): >>ikiris+sv7
◧◩◪
15. ikiris+sv7[view] [source] [discussion] 2024-02-27 02:07:24
>>adrian+lt2
Because they disagreed and thus everyone else is wrong, apparently.
[go to top]