Go Strings: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:


* [[Go Concepts - The Type System#Built-in_Types|Go Built-in Types]]
* [[Go Concepts - The Type System#Built-in_Types|Go Built-in Types]]
=Overview=
The predeclared String type identifier is <tt>string</tt>. String values are (possibly empty) sequences of bytes. String values are ''immutable''.


=String Operators and Functions=
=String Operators and Functions=

Revision as of 16:46, 22 March 2016

Internal

Overview

The predeclared String type identifier is string. String values are (possibly empty) sequences of bytes. String values are immutable.

String Operators and Functions