Re: [go-nuts] go modules and local packages

2020-08-08 Thread Sahas Subramanian
You could try moving mylib to your $GOPATH/src/, and import "mylib" in the services. On Sat, 8 Aug 2020, 20:21 Sankar, wrote: > Hi > > I have a monolithic source repository that is NOT in git, mercurial etc. > > The directory structure is: > > root > | > |--- mylib > | | --- mylib.go

Re: [go-nuts] Generics and parentheses

2020-07-22 Thread Sahas Subramanian
With angled brackets, do we really need the colon or dot on both sides? Wouldn't it be enough to just have it on the left to eliminate the parse time ambiguities? Like f<:int> or f<.int>? On Wed, 22 Jul 2020, 22:46 Евгений Кошевой, wrote: > Maybe something like this: > using <.Type.> > func f(T