Documentation ¶
Overview ¶
Package types -- Go言語の 型定義 についてのサンプルが配置されているパッケージです。
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DefineTypesEasy ¶ added in v0.2.8
func DefineTypesEasy() error
DefineTypesEasy -- Goでは型定義が簡単であるということを示すサンプルです.
func NewRegister ¶
NewRegister -- このパッケージ用のサンプルを登録する mapping.Register を生成します。
Types ¶
type KeyValuePair ¶
type KeyValuePair struct { Key string Value interface{} }
KeyValuePair -- 構造体の定義も struct で定義した内容を type で名前定義しているのと同じ
func NewKeyValuePair ¶
func NewKeyValuePair(k string, v string) *KeyValuePair
NewKeyValuePair -- *KeyValuePair を生成
Click to show internal directories.
Click to hide internal directories.