Skip to content

Commit 961a30c

Browse files
authored
example/basic 以下の各サンプルディレクトリ毎にREADME.mdを配置 (#247)
Add README.md
1 parent 1a40431 commit 961a30c

File tree

41 files changed

+400
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+400
-0
lines changed

examples/basic/array/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# サンプルリスト
2+
3+
このディレクトリには以下のサンプルがあります。
4+
5+
|file|example name|note|
6+
|----|------------|----|
7+
|array\_basic.go|array\_basic\_usage|Goにおける配列の基本的な使い方についてのサンプルです.|
8+
|array\_copy\_from\_slice.go|array\_copy\_from\_slice|スライスから配列へコピーするサンプルです。|
9+

examples/basic/binaries/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# サンプルリスト
2+
3+
このディレクトリには以下のサンプルがあります。
4+
5+
|file|example name|note|
6+
|----|------------|----|
7+
|binary\_byteorder.go|binary\_byteorder|encoding/binary パッケージを用いて Go におけるバイトオーダーの確認をするサンプルです.|
8+
|using\_hexdumper.go|binary\_using\_hex\_dumper|encoding/hex#Dumper のサンプルです。|
9+
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# サンプルリスト
2+
3+
このディレクトリには以下のサンプルがあります。
4+
5+
|file|example name|note|
6+
|----|------------|----|
7+
|binary\_readwrite.go|binary\_readwrite|binary パッケージの Read/Write を利用してエンディアン指定でデータを読み込むサンプルです.|
8+

examples/basic/builtins/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# サンプルリスト
2+
3+
このディレクトリには以下のサンプルがあります。
4+
5+
|file|example name|note|
6+
|----|------------|----|
7+
|printfunc.go|builtin\_print|ビルドイン関数のprintとfmt.Printの違いについてのサンプルです.|
8+

examples/basic/byteop/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# サンプルリスト
2+
3+
このディレクトリには以下のサンプルがあります。
4+
5+
|file|example name|note|
6+
|----|------------|----|
7+
|reader\_from\_byteslice.go|byteop\_reader\_from\_byteslice|[]byte から io.Reader を生成するサンプルです.|
8+

examples/basic/comments/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# サンプルリスト
2+
3+
このディレクトリには以下のサンプルがあります。
4+
5+
|file|example name|note|
6+
|----|------------|----|
7+
|comments\_basic.go|comment\_basic\_usage|GO言語のコメントスタイルについてのサンプルです.|
8+

examples/basic/constants/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# サンプルリスト
2+
3+
このディレクトリには以下のサンプルがあります。
4+
5+
|file|example name|note|
6+
|----|------------|----|
7+
|const\_statement\_declares.go|const\_statement\_declare|const による 定数 の宣言についてのサンプル|
8+

examples/basic/convert/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# サンプルリスト
2+
3+
このディレクトリには以下のサンプルがあります。
4+
5+
|file|example name|note|
6+
|----|------------|----|
7+
|strslice\_to\_ifslice.go|string\_slice\_to\_interface\_slice|[]string から []interface{} への変換についてのサンプルです.|
8+

examples/basic/defers/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# サンプルリスト
2+
3+
このディレクトリには以下のサンプルがあります。
4+
5+
|file|example name|note|
6+
|----|------------|----|
7+
|defer\_basic.go|defer\_basic\_usage|defer の基本的な使い方についてのサンプルです。|
8+
|defer\_in\_loop.go|defer\_in\_loop|deferをループ内で利用したい場合のやり方についてのサンプルです。|
9+
|defer\_in\_loop\_manyfiles.go|defer\_in\_loop\_manyfiles|deferをループ内で利用したい場合のやり方についてのサンプルです。|
10+

examples/basic/enum/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# サンプルリスト
2+
3+
このディレクトリには以下のサンプルがあります。
4+
5+
|file|example name|note|
6+
|----|------------|----|
7+
|iota\_basic.go|iota\_basic|iota の基本的な使い方のサンプルです.|
8+
|go\_enums.go|go\_enums|Go における enum の扱い方についてのサンプルです|
9+
|go\_iota.go|go\_iota|Go における iota の扱い方についてのサンプルです|
10+

0 commit comments

Comments
 (0)