package
0.0.0-20130121074735-1d03baafba06
Repository: https://github.com/icattlecoder/go.git
Documentation: pkg.go.dev

# Functions

Append appends the values x to a slice s and returns the resulting slice.
AppendSlice appends a slice t to a slice s and returns the resulting slice.
ChanOf returns the channel type with the given direction and element type.
Copy copies the contents of src into dst until either dst has been filled or src has been exhausted.
DeepEqual tests for deep equality.
Indirect returns the value that v points to.
MakeChan creates a new channel with the specified type and buffer size.
MakeFunc returns a new function of the given Type that wraps the function fn.
MakeMap creates a new map of the specified type.
MakeSlice creates a new zero-initialized slice value for the specified slice type, length, and capacity.
MapOf returns the map type with the given key and element types.
New returns a Value representing a pointer to a new zero value for the specified type.
NewAt returns a Value representing a pointer to a value of the specified type, using p as that pointer.
PtrTo returns the pointer type with element t.
Select executes a select operation described by the list of cases.
SliceOf returns the slice type with element type t.
TypeOf returns the reflection Type of the value in the interface{}.
ValueOf returns a new Value initialized to the concrete value stored in the interface i.
Zero returns a Value representing the zero value for the specified type.

# Constants

No description provided by the author
No description provided by the author
chan.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
<-chan.
default.
case <-Chan:.
case Chan <- Send.
chan<-.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Structs

Method represents a single method.
A SelectCase describes a single case in a select operation.
SliceHeader is the runtime representation of a slice.
StringHeader is the runtime representation of a string.
A StructField describes a single field in a struct.
Value is the reflection interface to a Go value.
A ValueError occurs when a Value method is invoked on a Value that does not support it.

# Interfaces

Type is the representation of a Go type.

# Type aliases

ChanDir represents a channel type's direction.
A Kind represents the specific kind of type that a Type represents.
A SelectDir describes the communication direction of a select case.
A StructTag is the tag string in a struct field.