在 go doc 下查看文档时,未导出的类型可能难以使用。
示例:
type hidden struct{} func Exported() hidden { // 具有 `hidden` 未导出返回类型的导出函数 return hidden{} }