Rick Beton
Rick Beton
[shameless plug]-> You could try rickb777/runtemplate instead. (also rickb777/collection for predetermined collection types)
Nice idea (although the Map function should possibly transform from ThingA to ThingB). Peter Welch (inventor of the parallel sort algorithm, amongst other things) often talks about channels and goroutines...
+1 for the need for reverse routing. Using named routes is one way to achieve reverse routing, but there might be other ways too. For example, the leaf nodes of...
This seems like it might add a lot of extra complexity for not a lot of benefit. If your params have a finite set of possible values, you could just...
Sorry to wade in, but this is unreleased software so it's unrealistic to expect any guarantees against breaking changes. There isn't a single tag yet, let alone any releases. It's...
There is a large number of forks; my guess is that many users made forks so they could provide their own stability 'guarantees'. I shall probably have to do the...
Also the second `Walk` function could do with something, e.g. ```go // Walk walks the file tree rooted at root - see details above. ```
Workaround: ```go mimesniffer.Register("application/json", func(bs []byte) bool { return json.Valid(bs) }) ```
I've realised that this would be a breaking change for any code that uses `Result.Num` and relies on its `float64` type. Maybe something for v2?
It would also be possible to add a method without a breaking change, such as ```go func (t Result) Decimal() decimal.Decimal { switch t.Type { default: return decimal.Decimal{} case True:...