Go Strings: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 10: | Line 10: | ||
The predeclared String [[Go Concepts - Lexical Structure#Identifiers|type identifier]] is <tt>string</tt>. String values are (possibly empty) sequences of bytes. String values are ''immutable''. | The predeclared String [[Go Concepts - Lexical Structure#Identifiers|type identifier]] is <tt>string</tt>. String values are (possibly empty) sequences of bytes. String values are ''immutable''. | ||
=String Literals= | |||
=String Operators and Functions= | =String Operators and Functions= |
Revision as of 16:55, 22 March 2016
External
- String types in the language specification https://golang.org/ref/spec#String_types
Internal
Overview
The predeclared String type identifier is string. String values are (possibly empty) sequences of bytes. String values are immutable.