1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-02-24 03:23:08 +01:00

Add type casting docs in golang (#1714)

* Update 110-type-casting.md

* Update content/roadmaps/109-golang/content/100-go-basics/110-type-casting.md

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
Hijen EL Khalifi 2022-09-08 14:36:47 +01:00 committed by GitHub
parent 30c472468c
commit db664cc4a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1 +1,8 @@
# Type casting
# Type Casting
Go doesn't support automatic type conversion, but it allows type casting, which is the process of explicitly changing the variable type. To learn more about typecasting, visit these resources :
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.geeksforgeeks.org/type-casting-or-type-conversion-in-golang/'>Geeks for Geeks: Type casting</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://go.dev/tour/basics/13'>Tour of Go: Type Casting Basics</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://golangdocs.com/type-casting-in-golang'>Go Docs: Type Casting</BadgeLink>