エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
How to use type parameters for generic programming | GoLand
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
How to use type parameters for generic programming | GoLand
By using type parameters, you can write functions that handle incoming parameters without dependi... By using type parameters, you can write functions that handle incoming parameters without depending on the type specified in the function declaration. For example, the PrintSliceInts function receives a slice of integers and prints it. func PrintSliceInts(i []int) { for _, v := range i{ print(v) } } func main() { PrintSliceInts([]int {1,2,3,4,5,6,7,8,9}) } To apply the same functionality to a slic