Home | History | Annotate | Download | only in doc

Lines Matching full:code

37 Very little if any code will need modification to run with Go 1.1,
76 set of valid Unicode code points.
87 <a href="/pkg/bufio/#Writer"><code>Writer</code></a>
88 value <code>w</code>,
90 <code>w.Write</code>,
91 a method value, is a function that will always write to <code>w</code>; it is equivalent to
92 a function literal closing over <code>w</code>:
103 from methods of a given type; the method expression <code>(*bufio.Writer).Write</code>
105 <code>(*bufio.Writer)</code>:
115 <em>Updating</em>: No existing code is affected; the change is strictly backward-compatible.
122 or call to <code>panic</code> at
143 code and therefore requires no complex analysis.
147 <em>Updating</em>: The change is backward-compatible, but existing code
148 with superfluous "return" statements and calls to <code>panic</code> may
150 Such code can be identified by <code>go vet</code>.
159 <code>gccgo</code>'s releases.
160 The 4.8.0 version of GCC shipped in March, 2013 and includes a nearly-Go 1.1 version of <code>gccgo</code>.
162 Sometime around July 2013, we expect 4.8.2 of GCC to ship with a <code>gccgo</code>
174 <code>go tool 6c -Fw -Dfoo</code> must now be written
175 <code>go tool 6c -F -w -D foo</code>.
181 The language allows the implementation to choose whether the <code>int</code> type and
182 <code>uint</code> types are 32 or 64 bits. Previous Go implementations made <code>int</code>
183 and <code>uint</code> 32 bits on all systems. Both the gc and gccgo implementations
185 <code>int</code> and <code>uint</code> 64 bits on 64-bit platforms such as AMD64/x86-64.
197 that <code>int</code> is only 32 bits may change behavior.
198 For example, this code prints a positive number on 64-bit systems and
208 <p>Portable code intending 32-bit sign extension (yielding <code>-1</code> on all systems)
237 To make it possible to represent code points greater than 65535 in UTF-16,
239 a range of code points to be used only in the assembly of large values, and only in UTF-16.
240 The code points in that surrogate range are illegal for any other purpose.
246 <a href="/pkg/unicode/utf8/#RuneError"><code>utf8.RuneError</code></a>,
263 printed <code>"\ud800"</code> in Go 1.0, but prints <code>"\ufffd"</code> in Go 1.1.
268 <code>'\ud800'</code> and <code>"\ud800"</code> are now rejected by the compilers.
270 such strings can still be created, as in <code>"\xed\xa0\x80"</code>.
271 However, when such a string is decoded as a sequence of runes, as in a range loop, it will yield only <code>utf8.RuneError</code>
295 This new facility is built into the <code>go</code> tool.
298 To enable it, set the <code>-race</code> flag when building or testing your program
299 (for instance, <code>go test -race</code>).
306 Due to the change of the <a href="#int"><code>int</code></a> to 64 bits and
315 The <code>go vet</code> command now checks that functions implemented in assembly
322 The <a href="/cmd/go/"><code>go</code></a> command has acquired several
327 First, when compiling, testing, or running Go code, the <code>go</code> command will now give more detailed error messages,
339 Second, the <code>go get</code> command no longer allows <code>$GOROOT</code>
341 To use the <code>go get</code>
342 command, a <a href="/doc/code.html#GOPATH">valid <code>$GOPATH</code></a> is now required.
346 $ GOPATH= go get code.google.com/p/foo/quxx
347 package code.google.com/p/foo/quxx: cannot download, $GOPATH not set. For more details see: go help gopath
351 Finally, as a result of the previous change, the <code>go get</code> command will also fail
352 when <code>$GOPATH</code> and <code>$GOROOT</code> are set to the same value.
356 $ GOPATH=$GOROOT go get code.google.com/p/foo/quxx
358 package code.google.com/p/foo/quxx: cannot download, $GOPATH must not be set to $GOROOT. For more details see: go help gopath
364 The <a href="/cmd/go/#hdr-Test_packages"><code>go test</code></a>
367 The implementation sets the <code>-c</code> flag automatically, so after running,
375 the file <code>mypackage.test</code> will be left in the directory where <code>go test</code> was run.
379 The <a href="/cmd/go/#hdr-Test_packages"><code>go test</code></a>
386 <code>-blockprofile</code>
388 <code>go test</code>.
389 Run <code>go help test</code> for more information.
395 The <a href="/cmd/fix/"><code>fix</code></a> command, usually run as
396 <code>go fix</code>, no longer applies fixes to update code from
398 To update pre-Go 1 code to Go 1.1, use a Go 1.0 tool chain
399 to convert the code to Go 1.0 first.
405 The "<code>go1.1</code>" tag has been added to the list of default
430 The Go 1.1 tool chain adds experimental support for <code>freebsd/arm</code>,
431 <code>netbsd/386</code>, <code>netbsd/amd64</code>, <code>netbsd/arm</code>,
432 <code>openbsd/386</code> and <code>openbsd/amd64</code> platforms.
436 An ARMv6 or later processor is required for <code>freebsd/arm</code> or
437 <code>netbsd/arm</code>.
441 Go 1.1 adds experimental support for <code>cgo</code> on <code>linux/arm</code>.
447 When cross-compiling, the <code>go</code> tool will disable <code>cgo</code>
452 To explicitly enable <code>cgo</code>, set <code>CGO_ENABLED=1</code>.
458 The performance of code compiled with the Go 1.1 gc tool suite should be noticeably
467 <li>The gc compilers generate better code in many cases, most noticeably for
470 in the run-time such as <a href="/pkg/builtin/#append"><code>append</code></a>
489 <a href="/pkg/bufio/"><code>bufio</code></a>
491 <a href="/pkg/bufio/#Reader.ReadBytes"><code>ReadBytes</code></a>,
492 <a href="/pkg/bufio/#Reader.ReadString"><code>ReadString</code></a>
494 <a href="/pkg/bufio/#Reader.ReadLine"><code>ReadLine</code></a>,
497 <a href="/pkg/bufio/#Scanner"><code>Scanner</code></a>,
503 Here is code to reproduce the input a line at a time:
518 (see the documentation for <a href="/pkg/bufio/#SplitFunc"><code>SplitFunc</code></a>),
526 The protocol-specific resolvers in the <a href="/pkg/net/"><code>net</code></a> package were formerly
530 <a href="/pkg/net/#ResolveTCPAddr"><code>ResolveTCPAddr</code></a>
531 are <code>"tcp"</code>,
532 <code>"tcp4"</code>, and <code>"tcp6"</code>, the Go 1.0 implementation silently accepted any string.
534 The same is true of the other protocol-specific resolvers <a href="/pkg/net/#ResolveIPAddr"><code>ResolveIPAddr</code></a>,
535 <a href="/pkg/net/#ResolveUDPAddr"><code>ResolveUDPAddr</code></a>, and
536 <a href="/pkg/net/#ResolveUnixAddr"><code>ResolveUnixAddr</code></a>.
541 <a href="/pkg/net/#ListenUnixgram"><code>ListenUnixgram</code></a>
543 <a href="/pkg/net/#UDPConn"><code>UDPConn</code></a> as
546 <a href="/pkg/net/#UnixConn"><code>UnixConn</code></a>
549 <a href="/pkg/net/#UnixConn.ReadFrom"><code>ReadFrom</code></a>
551 <a href="/pkg/net/#UnixConn.WriteTo"><code>WriteTo</code></a>
557 <a href="/pkg/net/#IPAddr"><code>IPAddr</code></a>,
558 <a href="/pkg/net/#TCPAddr"><code>TCPAddr</code></a>, and
559 <a href="/pkg/net/#UDPAddr"><code>UDPAddr</code></a>
560 add a new string field called <code>Zone</code>.
561 Code using untagged composite literals (e.g. <code>net.TCPAddr{ip, port}</code>)
562 instead of tagged literals (<code>net.TCPAddr{IP: ip, Port: port}</code>)
564 The Go 1 compatibility rules allow this change: client code must use tagged literals to avoid such breakages.
570 <code>go fix</code> will rewrite code to add tags for these types.
571 More generally, <code>go vet</code> will identify composite literals that
578 The <a href="/pkg/reflect/"><code>reflect</code></a> package has several significant additions.
583 the <code>reflect</code> package; see the description of
584 <a href="/pkg/reflect/#Select"><code>Select</code></a>
586 <a href="/pkg/reflect/#SelectCase"><code>SelectCase</code></a>
592 <a href="/pkg/reflect/#Value.Convert"><code>Value.Convert</code></a>
594 <a href="/pkg/reflect/#Type"><code>Type.ConvertibleTo</code></a>)
597 <a href="/pkg/reflect/#Value"><code>Value</code></a>
603 <a href="/pkg/reflect/#MakeFunc"><code>MakeFunc</code></a>
605 <a href="/pkg/reflect/#Value"><code>Values</code></a>,
607 to pass an actual <code>int</code> to a formal <code>interface{}</code>.
612 <a href="/pkg/reflect/#ChanOf"><code>ChanOf</code></a>,
613 <a href="/pkg/reflect/#MapOf"><code>MapOf</code></a>
615 <a href="/pkg/reflect/#SliceOf"><code>SliceOf</code></a>
617 <a href="/pkg/reflect/#Type"><code>Types</code></a>
618 from existing types, for example to construct the type <code>[]T</code> given
619 only <code>T</code>.
626 <a href="/pkg/time/"><code>time</code></a> package
633 There are two new methods of <a href="/pkg/time/#Time"><code>Time</code></a>,
634 <a href="/pkg/time/#Time.Round"><code>Round</code></a>
636 <a href="/pkg/time/#Time.Truncate"><code>Truncate</code></a>,
643 <a href="/pkg/time/#Time.YearDay"><code>YearDay</code></a>
649 <a href="/pkg/time/#Timer"><code>Timer</code></a>
651 <a href="/pkg/time/#Timer.Reset"><code>Reset</code></a>
657 <a href="/pkg/time/#ParseInLocation"><code>ParseInLocation</code></a>
659 <a href="/pkg/time/#Parse"><code>Parse</code></a>
667 Code that needs to read and write times using an external format with
674 To make it easier for binary distributions to access them if desired, the <code>exp</code>
675 and <code>old</code> source subtrees, which are not included in binary distributions,
676 have been moved to the new <code>go.exp</code> subrepository at
677 <code>code.google.com/p/go.exp</code>. To access the <code>ssa</code> package,
682 $ go get code.google.com/p/go.exp/ssa
690 import "code.google.com/p/go.exp/ssa"
694 The old package <code>exp/norm</code> has also been moved, but to a new repository
695 <code>go.text</code>, where the Unicode APIs and other text-related packages will
707 The <a href="/pkg/go/format/"><code>go/format</code></a> package provides
709 <a href="/cmd/go/#hdr-Run_gofmt_on_package_sources"><code>go fmt</code></a> command.
711 <a href="/pkg/go/format/#Node"><code>Node</code></a> to format a Go parser
712 <a href="/pkg/go/ast/#Node"><code>Node</code></a>,
714 <a href="/pkg/go/format/#Source"><code>Source</code></a>
715 to reformat arbitrary Go source code into the standard format as provided by the
716 <a href="/cmd/go/#hdr-Run_gofmt_on_package_sources"><code>go fmt</code></a> command.
720 The <a href="/pkg/net/http/cookiejar/"><code>net/http/cookiejar</code></a> package provides the basics for managing HTTP cookies.
724 The <a href="/pkg/runtime/race/"><code>runtime/race</code></a> package provides low-level facilities for data race detection.
738 The <a href="/pkg/bytes/"><code>bytes</code></a> package has two new functions,
739 <a href="/pkg/bytes/#TrimPrefix"><code>TrimPrefix</code></a>
741 <a href="/pkg/bytes/#TrimSuffix"><code>TrimSuffix</code></a>,
743 Also, the <a href="/pkg/bytes/#Buffer"><code>Buffer</code></a> type
745 <a href="/pkg/bytes/#Buffer.Grow"><code>Grow</code></a> that
748 <a href="/pkg/bytes/#Reader"><code>Reader</code></a> type now has a
749 <a href="/pkg/strings/#Reader.WriteTo"><code>WriteTo</code></a> method
751 <a href="/pkg/io/#WriterTo"><code>io.WriterTo</code></a> interface.
755 The <a href="/pkg/compress/gzip/"><code>compress/gzip</code></a> package has
756 a new <a href="/pkg/compress/gzip/#Writer.Flush"><code>Flush</code></a>
758 <a href="/pkg/compress/gzip/#Writer"><code>Writer</code></a>
759 type that flushes its underlying <code>flate.Writer</code>.
763 The <a href="/pkg/crypto/hmac/"><code>crypto/hmac</code></a> package has a new function,
764 <a href="/pkg/crypto/hmac/#Equal"><code>Equal</code></a>, to compare two MACs.
768 The <a href="/pkg/crypto/x509/"><code>crypto/x509</code></a> package
770 <a href="/pkg/crypto/x509/#DecryptPEMBlock"><code>DecryptPEMBlock</code></a> for instance),
772 <a href="/pkg/crypto/x509/#ParseECPrivateKey"><code>ParseECPrivateKey</code></a> to parse elliptic curve private keys.
776 The <a href="/pkg/database/sql/"><code>database/sql</code></a> package
778 <a href="/pkg/database/sql/#DB.Ping"><code>Ping</code></a>
780 <a href="/pkg/database/sql/#DB"><code>DB</code></a>
785 The <a href="/pkg/database/sql/driver/"><code>database/sql/driver</code></a> package
787 <a href="/pkg/database/sql/driver/#Queryer"><code>Queryer</code></a>
789 <a href="/pkg/database/sql/driver/#Conn"><code>Conn</code></a>
794 The <a href="/pkg/encoding/json/"><code>encoding/json</code></a> package's
795 <a href="/pkg/encoding/json/#Decoder"><code>Decoder</code></a>
797 <a href="/pkg/encoding/json/#Decoder.Buffered"><code>Buffered</code></a>
800 <a href="/pkg/encoding/json/#Decoder.UseNumber"><code>UseNumber</code></a>
802 <a href="/pkg/encoding/json/#Number"><code>Number</code></a>,
807 The <a href="/pkg/encoding/xml/"><code>encoding/xml</code></a> package
809 <a href="/pkg/encoding/xml/#EscapeText"><code>EscapeText</code></a>,
812 <a href="/pkg/encoding/xml/#Encoder"><code>Encoder</code></a>,
813 <a href="/pkg/encoding/xml/#Encoder.Indent"><code>Indent</code></a>,
818 In the <a href="/pkg/go/ast/"><code>go/ast</code></a> package, a
819 new type <a href="/pkg/go/ast/#CommentMap"><code>CommentMap</code></a>
824 In the <a href="/pkg/go/doc/"><code>go/doc</code></a> package,
825 the parser now keeps better track of stylized annotations such as <code>TODO(joe)</code>
826 throughout the code,
827 information that the <a href="/cmd/godoc/"><code>godoc</code></a>
828 command can filter or present according to the value of the <code>-notes</code> flag.
833 <a href="/pkg/html/template/"><code>html/template</code></a>
838 The <a href="/pkg/image/jpeg/"><code>image/jpeg</code></a> package now
843 The <a href="/pkg/io/"><code>io</code></a> package now exports the
844 <a href="/pkg/io/#ByteWriter"><code>io.ByteWriter</code></a> interface to capture the common
846 It also exports a new error, <a href="/pkg/io/#ErrNoProgress"><code>ErrNoProgress</code></a>,
847 used to indicate a <code>Read</code> implementation is looping without delivering data.
851 The <a href="/pkg/log/syslog/"><code>log/syslog</code></a> package now provides better support
856 The <a href="/pkg/math/big/"><code>math/big</code></a> package's
857 <a href="/pkg/math/big/#Int"><code>Int</code></a> type
859 <a href="/pkg/math/big/#Int.MarshalJSON"><code>MarshalJSON</code></a>
861 <a href="/pkg/math/big/#Int.UnmarshalJSON"><code>UnmarshalJSON</code></a>
864 <a href="/pkg/math/big/#Int"><code>Int</code></a>
865 can now convert directly to and from a <code>uint64</code> using
866 <a href="/pkg/math/big/#Int.Uint64"><code>Uint64</code></a>
868 <a href="/pkg/math/big/#Int.SetUint64"><code>SetUint64</code></a>,
870 <a href="/pkg/math/big/#Rat"><code>Rat</code></a>
871 can do the same with <code>float64</code> using
872 <a href="/pkg/math/big/#Rat.Float64"><code>Float64</code></a>
874 <a href="/pkg/math/big/#Rat.SetFloat64"><code>SetFloat64</code></a>.
878 The <a href="/pkg/mime/multipart/"><code>mime/multipart</code></a> package
880 <a href="/pkg/mime/multipart/#Writer"><code>Writer</code></a>,
881 <a href="/pkg/mime/multipart/#Writer.SetBoundary"><code>SetBoundary</code></a>,
883 The <a href="/pkg/mime/multipart/#Reader"><code>Reader</code></a> also now
884 transparently decodes any <code>quoted-printable</code> parts and removes
885 the <code>Content-Transfer-Encoding</code> header when doing so.
890 <a href="/pkg/net/"><code>net</code></a> package's
891 <a href="/pkg/net/#ListenUnixgram"><code>ListenUnixgram</code></a>
893 <a href="/pkg/net/#UnixConn"><code>UnixConn</code></a>
895 <a href="/pkg/net/#UDPConn"><code>UDPConn</code></a>, which was
901 The <a href="/pkg/net/"><code>net</code></a> package includes a new type,
902 <a href="/pkg/net/#Dialer"><code>Dialer</code></a>, to supply options to
903 <a href="/pkg/net/#Dialer.Dial"><code>Dial</code></a>.
907 The <a href="/pkg/net/"><code>net</code></a> package adds support for
908 link-local IPv6 addresses with zone qualifiers, such as <code>fe80::1%lo0</code>.
909 The address structures <a href="/pkg/net/#IPAddr"><code>IPAddr</code></a>,
910 <a href="/pkg/net/#UDPAddr"><code>UDPAddr</code></a>, and
911 <a href="/pkg/net/#TCPAddr"><code>TCPAddr</code></a>
913 <a href="/pkg/net/#Dial"><code>Dial</code></a>,
914 <a href="/pkg/net/#ResolveIPAddr"><code>ResolveIPAddr</code></a>,
915 <a href="/pkg/net/#ResolveUDPAddr"><code>ResolveUDPAddr</code></a>, and
916 <a href="/pkg/net/#ResolveTCPAddr"><code>ResolveTCPAddr</code></a>,
921 The <a href="/pkg/net/"><code>net</code></a> package adds
922 <a href="/pkg/net/#LookupNS"><code>LookupNS</code></a> to its suite of resolving functions.
923 <code>LookupNS</code> returns the <a href="/pkg/net/#NS">NS records</a> for a host name.
927 The <a href="/pkg/net/"><code>net</code></a> package adds protocol-specific
929 <a href="/pkg/net/#IPConn"><code>IPConn</code></a>
930 (<a href="/pkg/net/#IPConn.ReadMsgIP"><code>ReadMsgIP</code></a>
931 and <a href="/pkg/net/#IPConn.WriteMsgIP"><code>WriteMsgIP</code></a>) and
932 <a href="/pkg/net/#UDPConn"><code>UDPConn</code></a>
933 (<a href="/pkg/net/#UDPConn.ReadMsgUDP"><code>ReadMsgUDP</code></a> and
934 <a href="/pkg/net/#UDPConn.WriteMsgUDP"><code>WriteMsgUDP</code></a>).
935 These are specialized versions of <a href="/pkg/net/#PacketConn"><codecode></a>'s
936 <code>ReadFrom</code> and <code>WriteTo</code> methods that provide access to out-of-band data associated
941 The <a href="/pkg/net/"><code>net</code></a> package adds methods to
942 <a href="/pkg/net/#UnixConn"><code>UnixConn</code></a> to allow closing half of the connection
943 (<a href="/pkg/net/#UnixConn.CloseRead"><code>CloseRead</code></a> and
944 <a href="/pkg/net/#UnixConn.CloseWrite"><code>CloseWrite</code></a>),
945 matching the existing methods of <a href="/pkg/net/#TCPConn"><code>TCPConn</code></a>.
949 The <a href="/pkg/net/http/"><code>net/http</code></a> package includes several new additions.
950 <a href="/pkg/net/http/#ParseTime"><code>ParseTime</code></a> parses a time string, trying
952 The <a href="/pkg/net/http/#Request.PostFormValue"><code>PostFormValue</code></a> method of
953 <a href="/pkg/net/http/#Request"><code>Request</code></a> is like
954 <a href="/pkg/net/http/#Request.FormValue"><code>FormValue</code></a> but ignores URL parameters.
955 The <a href="/pkg/net/http/#CloseNotifier"><code>CloseNotifier</code></a> interface provides a mechanism
957 The <code>ServeMux</code> type now has a
958 <a href="/pkg/net/http/#ServeMux.Handler"><code>Handler</code></a> method to access a path's
959 <code>Handler</code> without executing it.
960 The <code>Transport</code> can now cancel an in-flight request with
961 <a href="/pkg/net/http/#Transport.CancelRequest"><code>CancelRequest</code></a>.
963 a <a href="/pkg/net/http/#Response"><code>Response.Body</code></a> is closed before
968 The <a href="/pkg/net/mail/"><code>net/mail</code></a> package has two new functions,
969 <a href="/pkg/net/mail/#ParseAddress"><code>ParseAddress</code></a> and
970 <a href="/pkg/net/mail/#ParseAddressList"><code>ParseAddressList</code></a>,
972 <a href="/pkg/net/mail/#Address"><code>Address</code></a> structures.
976 The <a href="/pkg/net/smtp/"><code>net/smtp</code></a> package's
977 <a href="/pkg/net/smtp/#Client"><code>Client</code></a> type has a new method,
978 <a href="/pkg/net/smtp/#Client.Hello"><code>Hello</code></a>,
979 which transmits a <code>HELO</code> or <code>EHLO</code> message to the server.
983 The <a href="/pkg/net/textproto/"><code>net/textproto</code></a> package
985 <a href="/pkg/net/textproto/#TrimBytes"><code>TrimBytes</code></a> and
986 <a href="/pkg/net/textproto/#TrimString"><code>TrimString</code></a>,
991 The new method <a href="/pkg/os/#FileMode.IsRegular"><code>os.FileMode.IsRegular</code></a> makes it easy to ask if a file is a plain file.
995 The <a href="/pkg/os/signal/"><code>os/signal</code></a> package has a new function,
996 <a href="/pkg/os/signal/#Stop"><code>Stop</code></a>, which stops the package delivering
1001 The <a href="/pkg/regexp/"><code>regexp</code></a> package
1003 <a href="/pkg/regexp/#Regexp.Longest"><code>Regexp.Longest</code></a>
1005 <a href="/pkg/regexp/#Regexp.Split"><code>Regexp.Split</code></a> slices
1010 The <a href="/pkg/runtime/debug/"><code>runtime/debug</code></a> package
1012 The <a href="/pkg/runtime/debug/#FreeOSMemory"><code>FreeOSMemory</code></a>
1015 the <a href="/pkg/runtime/debug/#ReadGCStats"><code>ReadGCStats</code></a>
1017 <a href="/pkg/runtime/debug/#SetGCPercent"><code>SetGCPercent</code></a>
1023 The <a href="/pkg/sort/"><code>sort</code></a> package has a new function,
1024 <a href="/pkg/sort/#Reverse"><code>Reverse</code></a>.
1026 <a href="/pkg/sort/#Sort"><code>sort.Sort</code></a>
1027 with a call to <code>Reverse</code> causes the sort order to be reversed.
1031 The <a href="/pkg/strings/"><code>strings</code></a> package has two new functions,
1032 <a href="/pkg/strings/#TrimPrefix"><code>TrimPrefix</code></a>
1034 <a href="/pkg/strings/#TrimSuffix"><code>TrimSuffix</code></a>
1036 <a href="/pkg/strings/#Reader.WriteTo"><code>Reader.WriteTo</code></a> so the
1037 <a href="/pkg/strings/#Reader"><code>Reader</code></a>
1039 <a href="/pkg/io/#WriterTo"><code>io.WriterTo</code></a> interface.
1043 The <a href="/pkg/syscall/"><code>syscall</code></a> package's
1044 <a href="/pkg/syscall/#Fchflags"><code>Fchflags</code></a> function on various BSDs
1050 The <a href="/pkg/syscall/"><code>syscall</code></a> package also has received many updates
1055 The <a href="/pkg/testing/"><code>testing</code></a> package now automates the generation of allocation
1057 <a href="/pkg/testing/#AllocsPerRun"><code>AllocsPerRun</code></a> function. And the
1058 <a href="/pkg/testing/#B.ReportAllocs"><code>ReportAllocs</code></a>
1059 method on <a href="/pkg/testing/#B"><code>testing.B</code></a> will enable printing of
1061 <a href="/pkg/testing/#BenchmarkResult.AllocsPerOp"><code>AllocsPerOp</code></a> method of
1062 <a href="/pkg/testing/#BenchmarkResult"><code>BenchmarkResult</code></a>.
1064 <a href="/pkg/testing/#Verbose"><code>Verbose</code></a> function to test the state of the <code>-v</code>
1067 <a href="/pkg/testing/#B.Skip"><code>Skip</code></a> method of
1068 <a href="/pkg/testing/#B"><code>testing.B</code></a> and
1069 <a href="/pkg/testing/#T"><code>testing.T</code></a>
1074 In the <a href="/pkg/text/template/"><code>text/template</code></a>
1076 <a href="/pkg/html/template/"><code>html/template</code></a> packages,
1079 <a href="/pkg/text/template/parse/#Node"><code>Node</code></a> interface got two new methods to provide
1082 no existing code should be affected because this interface is explicitly intended only to be used
1084 <a href="/pkg/text/template/"><code>text/template</code></a>
1086 <a href="/pkg/html/template/"><code>html/template</code></a>
1091 The implementation of the <a href="/pkg/unicode/"><code>unicode</code></a> package has been updated to Unicode version 6.2.0.
1095 In the <a href="/pkg/unicode/utf8/"><code>unicode/utf8</code></a> package,
1096 the new function <a href="/pkg/unicode/utf8/#ValidRune"><code>ValidRune</code></a> reports whether the rune is a valid Unicode code point.