Go Functions: Difference between revisions
Jump to navigation
Jump to search
Line 9: | Line 9: | ||
Built-in functions are available by default, without importing any package. Their names are [[Go_Language#Pre-Declared_Functions|predeclared function identifiers]]. | Built-in functions are available by default, without importing any package. Their names are [[Go_Language#Pre-Declared_Functions|predeclared function identifiers]]. | ||
==Length and Capacity== | |||
< | ====<tt>len()</tt>==== | ||
====<tt>cap()</tt>==== | |||
</font> | <font color=darkkhaki>Built-in functions for [[Go_Language#Type_Conversion|type conversions]].</font> | ||
=DEPLETE THIS= | =DEPLETE THIS= | ||
<FONT COLOR=darkkhaki>deplete this [[Go Concepts - Functions]]</font> | <FONT COLOR=darkkhaki>deplete this [[Go Concepts - Functions]]</font> |
Revision as of 23:49, 21 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.
Length and Capacity
len()
cap()
Built-in functions for type conversions.
DEPLETE THIS
deplete this Go Concepts - Functions