package
0.5.36
Repository: https://github.com/devlights/try-golang.git
Documentation: pkg.go.dev

# README

サンプルリスト

このディレクトリには以下のサンプルがあります。

fileexample namenote
strslice_to_ifslice.goconvert_string_slice_to_interface_slice[]string から []interface{} への変換についてのサンプルです.
int__to_str.goconvert_int_to_strfmt.Sprint() を使って、数値 (int) を 文字列 (string) に変換するサンプルです
struct_to_str.goconvert_struct_to_strfmt.Sprint() を利用して 構造体 を 文字列 にするサンプルです

# Functions

IntToStr は、fmt.Sprint() を使って、数値 (int) を 文字列 (string) に変換するサンプルです.
NewRegister -- このパッケージ用のサンプルを登録する mapping.Register を生成します。.
StringSliceToInterfaceSlice -- []string から []interface{} への変換についてのサンプルです.
StructToStr は、fmt.Sprint() を利用して 構造体 を 文字列 にするサンプルです.