Go Functions: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 21: Line 21:
|}
|}


==TO DO: Continue to Distribute These==
<font color=darkkhaki>
<tt>[[go Built-In Function close|close()]]</tt>


Allocation: <tt>[[go Built-In Function new|new()]]</tt>


Making slices, maps and channels: <tt>[[go Built-In Function make|make()]]</tt>


Appending to and copying slices: <tt>[[Go Slices#append.28.29|append()]]</tt>,  <tt>[[Go Slices#copy.28.29|copy()]]</tt>


Deletion of map elements <tt>[[Go Maps#delete.28.29|delete()]]</tt>


* <tt>[[go Built-In Function close|close()]]</tt>
Handling panics <tt>[[Go Concepts - Error Handling#Panics|panic()]]</tt>, <tt>[[Go Concepts - Error Handling#Panics|recover()]]</tt>
* Allocation: <tt>[[go Built-In Function new|new()]]</tt>
</font>
* Making slices, maps and channels: <tt>[[go Built-In Function make|make()]]</tt>
* Appending to and copying slices: <tt>[[Go Slices#append.28.29|append()]]</tt>,  <tt>[[Go Slices#copy.28.29|copy()]]</tt>
* Deletion of map elements <tt>[[Go Maps#delete.28.29|delete()]]</tt>
* Handling panics <tt>[[Go Concepts - Error Handling#Panics|panic()]]</tt>, <tt>[[Go Concepts - Error Handling#Panics|recover()]]</tt>


=DEPLETE THIS=
=DEPLETE THIS=

Revision as of 00:12, 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

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

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