Go Functions
External
Internal
Overview
A function is a block of instructions, grouped together, and that optimally have a name.
Go functions allow variables to be declared, inside the function, with the short variable declaration.
main()
All programs in Go must have a main()
function. The main()
function must be declared in the main
package.
Pass by Value vs. Pass by Reference vs. Pass by Pointer
Arrays are passed by value.
Built-in Functions
Built-in functions are available by default, without importing any package. Their names are predeclared function identifiers. They give access to Go's internal data structures. Their semantics depends on the arguments.
Length and Capacity
len()
len()
returns string length, array length, slice length and map size.
cap()
cap()
returns slice capacity.
Complex Number Manipulation
TO DO: Continue to Distribute These Built-in Functions
Allocation: new()
Making slices, maps and channels: make()
Appending to and copying slices: append(), copy()
Deletion of map elements delete()
Handling panics panic(), recover()
DEPLETE THIS
Built-in functions for type conversions.
deplete this Go Concepts - Functions