メモメモ lint

https://github.com/golang/lint

メモメモ error

Error handling and Go - The Go Blog

メモメモ runes

https://blog.golang.org/strings Unicode正規化 - Wikipedia

メモメモ net listener

http://golang.org/pkg/net/#Listener

メモメモ http.Request

http://golang.org/pkg/net/http/#Request

メモメモ channels

http://golang.org/doc/effective_go.html#channels Communicating Sequential Processes - Wikipedia

メモメオ io.Copy

http://golang.org/pkg/io/#Copy

メモメモ slices, 2D

http://golang.org/doc/effective_go.html#slices

メモメモ Reader, gzip

http://golang.org/pkg/compress/gzip/#Reader

メモメモ json

JSON and Go - The Go Blog

メモメモ character

https://golang.org/ref/spec#Source_code_representation 文字符号化方式 - Wikipedia

メモメモ defer, recover

Defer, Panic, and Recover - The Go Blog

メモメモ 共有メモリ , パイプ

共有メモリ - Wikipedia パイプ (コンピュータ) - Wikipedia セマフォ - Wikipedia

メモメモ append, slice

Go Slices: usage and internals - The Go Blog

メモメモ embedded field

<- http://golang.org/ref/spec#Struct_types Struct types // A field declared with a type but no explicit field name is an anonymous field, also called an embedded field or an embedding of the type in the struct // // ! Given a struct type S…

メモメモ type Time

<- http://golang.org/pkg/time/#Time type Time type Time struct { // contains filtered or unexported fields } A Time represents an instant in time with nanosecond precision. Programs using times should typically store and pass them as value…

メモメモ delta

<- https://code.google.com/p/go-tour/source/browse/solutions/loops.go Δ - Wikipedia 数学(集合論)で対称差を表すのに使われることがある。 対称差 - Wikipedia 数学において、対称差(たいしょうさ、symmetric difference)とは、二つの集合に対し、ど…

メモメモ %g

Floating-point and complex constituents: //%e scientific notation, e.g. -1234.456e+78 //%g %e for large exponents, %f otherwise

メモメモ os.Open

<- http://golang.org/pkg/os/ Package os Overview ▾ Package os provides a platform-independent interface to operating system functionality. The design is Unix-like, although the error handling is Go-like; failing calls return values of type…

メモメオ Read

<- https://tour.golang.org/methods/10 <- http://golang.org/search?q=Read#Global package binary /src/encoding/binary/binary.go:138 // Read reads structured binary data from r into data. // Data must be a pointer to a fixed-size value or a s…

メモメモ 127.0.0.1

<- https://tour.golang.org/methods/7 type IPAddr [4]bytefunc main() { addrs := map[string]IPAddr{ "loopback": {127, 0, 0, 1} // "loopback": [4]byte{127, 0, 0, 1},

メモメモ implicit / explicit

<- https://tour.golang.org/methods/5 Interfaces are satisfied implicitly explicit ; 陽関数 関数 (数学) - Wikipedia 陽表式と陰伏式 多変数方程式がいくつかの関数関係を定義することもある。例えば のような式が与えられているとき、x と y は独立に…

メモメモ fmt2 Sprint / Print

func Sprint func Sprint(a ...interface{}) string Sprint formats using the default formats for its operands and returns the resulting string. Spaces are added between operands when neither is a string. func Print func Print(a ...interface{}…

メモメモ Nextafter float

func Nextafter func Nextafter(x, y float64) (r float64) Nextafter returns the next representable float64 value after x towards y. Special cases: Nextafter64(x, x) = x Nextafter64(NaN, y) = NaN Nextafter64(x, NaN) = NaN NaN - Wikipedia NaN…

メモメモ pac log

<- http://golang.org/pkg/os/ <-http://golang.org/pkg/log/ Package log Overview ▾ Package log implements a simple logging package. It defines a type, Logger, with methods for formatting output. It also has a predefined 'standard' Logger acc…

メモメモ %q

<-https://golang.org/pkg/fmt/ Package fmt Printing Integer: //%q a single-quoted character literal safely escaped with Go syntax. String and slice of bytes: //%q a double-quoted string safely escaped with Go syntax

メモメオ time.Tick

func Tick func Tick(d Duration) <-chan Time Tick is a convenience wrapper for NewTicker providing access to the ticking channel only. Useful for clients that have no need to shut down the ticker. type Duration type Duration int64 A Duratio…

メモメモ runtime

Constants const GOOS string = theGoos GOOS is the running program's operating system target: one of darwin, freebsd, linux, and so on. 絶対値 - Wikipedia

メモメオ Println 標準出力。

func Println func Println(a ...interface{}) (n int, err error) Println formats using the default formats for its operands and writes to standard output. Spaces are always added between operands and a newline is appended. It returns the num…

メモメモ りんく

io https://golang.org/pkg/io/ fmt https://golang.org/pkg/fmt/ http://jxck.hatenablog.com/entry/wbpress-vol.81-go