Go Functions: Difference between revisions

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


=Overview=
=Overview=
A function is a block of instructions, grouped together, and that optimally have a name.


<span id='Short_Variable_Declaration'></span>Go functions allow variables to be declared, inside the function, with the [[Go_Language#Short_Variable_Declaration|short variable declaration]].
<span id='Short_Variable_Declaration'></span>Go functions allow variables to be declared, inside the function, with the [[Go_Language#Short_Variable_Declaration|short variable declaration]].
=<tt>main()</tt>=
All programs in Go must have a <code>main()</code> function.


=<span id='Pass_by_Value_vs._Pass_by_Reference'></span>Pass by Value vs. Pass by Reference vs. Pass by Pointer=
=<span id='Pass_by_Value_vs._Pass_by_Reference'></span>Pass by Value vs. Pass by Reference vs. Pass by Pointer=

Revision as of 03:41, 26 August 2023

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.

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.

append() cap() close() complex() copy()
delete() imag() len() make() new()
panic() print() println() real() recover()

Length and Capacity

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

len()

len() returns string length, array length, slice length and map size.

cap()

cap() returns slice capacity.

Complex Number Manipulation

complex() real() imag()

TO DO: Continue to Distribute These Built-in Functions

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