Go语言中文网 为您找到相关结果 2

中文文档image包翻译句子缺失

中文文档pkg地址:https://go-zh.org/pkg/image/color/ 英文文档pkg地址:https://golang.org/pkg/image/color/ image/color包下的type Color, type RGBA, type RGBA64下均有一句:

An alpha-premultiplied color component C has been scaled by alpha (A), so has valid values 0 <= C <= A.

但中文文档中没有这句的翻译,而且RGBA64中的每个数值都是16bit的,而中文文档写了8bit,应该是笔误了,求修...阅读全文

为什么golang没有min/max以及三元操作符

目前为止最恨的golang的这个缺失属性,这个功能很常用,绝大部分高级语言都支持,为毛golang不提供呢? 虽然math库里面有min(float, float) float的函数,但没有针对int的,实际上常用的就是int。 每次我都得自己在项目的common模块里自己定义这两个函数。 package main import ( "fmt" ) // Define ternary operate function func ternary(expr bool, whenTrue, whenFalse interface{}) interface{} { if expr == true { return whenTrue } return whenFalse } // Define min...阅读全文

博文 2020-01-11 14:32:45 CodingCode