goli admin

Results 4 issues of goli admin

Hello the following program fails to compile https://play.folang.org/p/2XxLi_ukWR5 ``` package main func x[T](p *T)(**T){ return &p } func y[T](a *T){ x[*T](x[T](a)) } func main() { } ```

bug

Hello. Manually implementing and passing a concrete struct as a generic struct function parameter does not work. This does not work: ``` package main import "fmt" type StringBox struct {...

[libgeneration](https://github.com/go-li/libgeneration) contains several generic algorithms and datastructures - sorted map (dict/avl) - binary tree (dict/binary) - graph (graphs and algorithms) - binary heap (a queue) - efficient tree based heap...

discussion

Hello, the following does not run https://play.folang.org/p/XhaheZsrxBT ``` package main func instantiate[T](p *T) { var foo = make(map[T]int) foo[*p] = 9 } func main() { instantiate[[0]byte]((*[0]byte)(nil)) } ``` The expected...

bug