We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dff2edf + c79238c commit 2a8c29aCopy full SHA for 2a8c29a
1 file changed
data/golang.json
@@ -481,6 +481,18 @@
481
"code":"ch := make(chan int, 5)"
482
}
483
]
484
+ },
485
+ {
486
+ "title":"জেনারিক ফাংশন",
487
+ "items":[{
488
+ "definition":"জেনারিক ফাংশন তৈরি করা",
489
+ "code":"func genericFunc[T any](a T) T {\n\treturn a\n}"
490
491
492
+ "definition":"জেনারিক ফাংশন কল করা",
493
+ "code":"genericFunc[int](5)"
494
+ }
495
+ ]
496
497
498
0 commit comments