# Packages
No description provided by the author
# README
サンプルリスト
このディレクトリには以下のサンプルがあります。
file | example name | note |
---|---|---|
interface_basic.go | interface_basic | Goのインターフェースの基本に関するサンプルです. |
interface_composition.go | interface_composition | Goのインターフェースのコンポジション (合成) についてのサンプルです. |
interface_ducktyping.go | interface_ducktyping | Go で、インターフェースの仕組みを用いたPythonチックなダックタイピングのやり方のサンプルです. |
interface_verify_compliance.go | interface_verify_compliance | インターフェースの実装を検証するやり方のサンプルです. |
interface_nil_notnil | interface_nil_notnil.go | interface{} が nil になったり not-nil になったりする場合のサンプルです |