Go Functions: Difference between revisions
Jump to navigation
Jump to search
Line 18: | Line 18: | ||
:::{|class="wikitable" style="text-align: left;" | |||
| <font face='menlo' size='-2'>[[go Built-In Functions for Manipulating Complex Numbers#complex.28.29|complex()]]</font> || <font face='menlo' size='-2'>[[go Built-In Functions for Manipulating Complex Numbers#real.28.29|real()]]</font> || <font face='menlo' size='-2'>[[go Built-In Functions for Manipulating Complex Numbers#imag.28.29|imag()]]</font> | |||
|- | |||
|} | |||
Revision as of 00:10, 22 August 2023
Internal
Overview
Go functions allow variables to be declared, inside the function, with the short variable declaration.
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
- close()
- 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