Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
659f1f20
Commit
659f1f20
authored
Oct 26, 2011
by
Andrew Gerrand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
weekly.2011-10-26 (new rune type)
R=rsc CC=golang-dev
https://golang.org/cl/5297062
parent
c945f77f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
1 deletion
+20
-1
.hgtags
.hgtags
+0
-1
doc/devel/weekly.html
doc/devel/weekly.html
+20
-0
No files found.
.hgtags
View file @
659f1f20
...
...
@@ -89,4 +89,3 @@ c1702f36df0397c19fc333571a771666029aa37e release
acaddf1cea75c059d19b20dbef35b20fb3f38954 release.r58.2
6d7136d74b656ba6e1194853a9486375005227ef weekly.2011-10-18
941b8015061a0f6480954821dd589c60dfe35ed1 weekly.2011-10-25
941b8015061a0f6480954821dd589c60dfe35ed1 weekly
doc/devel/weekly.html
View file @
659f1f20
...
...
@@ -14,6 +14,26 @@ hg pull
hg update weekly.
<i>
YYYY-MM-DD
</i>
</pre>
<h2
id=
"2011-10-26"
>
2011-10-26 (new rune type)
</h2>
<pre>
This snapshot introduces the rune type, an alias for int that
should be used for Unicode code points.
A future release of Go (after Go 1) will change rune to be an
alias for int32 instead of int. Using rune consistently is the way
to make your code build both before and after this change.
To test your code for rune safety, you can rebuild the Go tree with
GOEXPERIMENT=rune32 ./all.bash
which builds a compiler in which rune is an alias for int32 instead of int.
Also, run govet on your code to identify methods that might need to have their
signatures updated.
</pre>
<h2
id=
"2011-10-25"
>
2011-10-25
</h2>
<pre>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment