Go Functions: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 17: Line 17:


=DEPLETE THIS=
=DEPLETE THIS=
<font color=darkkhaki>
Built-in functions for [[Go_Language#Type_Conversion|type conversions]].</font>
<FONT COLOR=darkkhaki>deplete this [[Go Concepts - Functions]]</font>
<FONT COLOR=darkkhaki>deplete this [[Go Concepts - Functions]]</font>

Revision as of 23:55, 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

https://golang.org/ref/spec#Length_and_capacity

len()

Used to return string length, array length, slice length and map size.

cap()

DEPLETE THIS


Built-in functions for type conversions.

deplete this Go Concepts - Functions