Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // https://golang.org/pkg/builtin/:
- func panic(v interface{})
- func recover() interface{}
- // https://golang.org/pkg/container/heap/:
- func Pop(h Interface) interface{}
- func Push(h Interface, x interface{})
- func Remove(h Interface, i int) interface{}
- // https://golang.org/pkg/container/list/:
- func (l *List) InsertAfter(v interface{}, mark *Element) *Element
- func (l *List) InsertBefore(v interface{}, mark *Element) *Element
- func (l *List) PushBack(v interface{}) *Element
- func (l *List) PushFront(v interface{}) *Element
- func (l *List) Remove(e *Element) interface{}
- // https://golang.org/pkg/container/ring/:
- func (r *Ring) Do(f func(interface{}))
- // https://golang.org/pkg/context/:
- func WithValue(parent Context, key, val interface{}) Context
- // https://golang.org/pkg/crypto/x509/:
- func CreateCertificate(rand io.Reader, template, parent *Certificate, pub, priv interface{}) (cert []byte, err error)
- func CreateCertificateRequest(rand io.Reader, template *CertificateRequest, priv interface{}) (csr []byte, err error)
- func MarshalPKCS8PrivateKey(key interface{}) ([]byte, error)
- func MarshalPKIXPublicKey(pub interface{}) ([]byte, error)
- func ParsePKCS8PrivateKey(der []byte) (key interface{}, err error)
- func ParsePKIXPublicKey(derBytes []byte) (pub interface{}, err error)
- func (c *Certificate) CreateCRL(rand io.Reader, priv interface{}, revokedCerts []pkix.RevokedCertificate, now, expiry time.Time) (crlBytes []byte, err error)
- // https://golang.org/pkg/database/sql/:
- func (c *Conn) ExecContext(ctx context.Context, query string, args ...interface{}) (Result, error)
- func (c *Conn) QueryContext(ctx context.Context, query string, args ...interface{}) (*Rows, error)
- func (c *Conn) QueryRowContext(ctx context.Context, query string, args ...interface{}) *Row
- func (db *DB) Exec(query string, args ...interface{}) (Result, error)
- func (db *DB) ExecContext(ctx context.Context, query string, args ...interface{}) (Result, error)
- func (db *DB) Query(query string, args ...interface{}) (*Rows, error)
- func (db *DB) QueryContext(ctx context.Context, query string, args ...interface{}) (*Rows, error)
- func (db *DB) QueryRow(query string, args ...interface{}) *Row
- func (db *DB) QueryRowContext(ctx context.Context, query string, args ...interface{}) *Row
- func Named(name string, value interface{}) NamedArg
- func (n *NullBool) Scan(value interface{}) error
- func (n *NullFloat64) Scan(value interface{}) error
- func (n *NullInt64) Scan(value interface{}) error
- func (ns *NullString) Scan(value interface{}) error
- func (r *Row) Scan(dest ...interface{}) error
- func (rs *Rows) Scan(dest ...interface{}) error
- func (s *Stmt) Exec(args ...interface{}) (Result, error)
- func (s *Stmt) ExecContext(ctx context.Context, args ...interface{}) (Result, error)
- func (s *Stmt) Query(args ...interface{}) (*Rows, error)
- func (s *Stmt) QueryContext(ctx context.Context, args ...interface{}) (*Rows, error)
- func (s *Stmt) QueryRow(args ...interface{}) *Row
- func (s *Stmt) QueryRowContext(ctx context.Context, args ...interface{}) *Row
- func (tx *Tx) Exec(query string, args ...interface{}) (Result, error)
- func (tx *Tx) ExecContext(ctx context.Context, query string, args ...interface{}) (Result, error)
- func (tx *Tx) Query(query string, args ...interface{}) (*Rows, error)
- func (tx *Tx) QueryContext(ctx context.Context, query string, args ...interface{}) (*Rows, error)
- func (tx *Tx) QueryRow(query string, args ...interface{}) *Row
- func (tx *Tx) QueryRowContext(ctx context.Context, query string, args ...interface{}) *Row
- // https://golang.org/pkg/database/sql/driver/:
- func IsScanValue(v interface{}) bool
- func IsValue(v interface{}) bool
- func (n NotNull) ConvertValue(v interface{}) (Value, error)
- func (n Null) ConvertValue(v interface{}) (Value, error)
- // https://golang.org/pkg/debug/dwarf/:
- func (e *Entry) Val(a Attr) interface{}
- // https://golang.org/pkg/encoding/asn1/:
- func Marshal(val interface{}) ([]byte, error)
- func MarshalWithParams(val interface{}, params string) ([]byte, error)
- func Unmarshal(b []byte, val interface{}) (rest []byte, err error)
- func UnmarshalWithParams(b []byte, val interface{}, params string) (rest []byte, err error)
- // https://golang.org/pkg/encoding/binary/:
- func Read(r io.Reader, order ByteOrder, data interface{}) error
- func Size(v interface{}) int
- func Write(w io.Writer, order ByteOrder, data interface{}) error
- // https://golang.org/pkg/encoding/gob/:
- func Register(value interface{})
- func RegisterName(name string, value interface{})
- func (dec *Decoder) Decode(e interface{}) error
- func (enc *Encoder) Encode(e interface{}) error
- // https://golang.org/pkg/encoding/json/:
- func Marshal(v interface{}) ([]byte, error)
- func MarshalIndent(v interface{}, prefix, indent string) ([]byte, error)
- func Unmarshal(data []byte, v interface{}) error
- func (dec *Decoder) Decode(v interface{}) error
- func (enc *Encoder) Encode(v interface{}) error
- // https://golang.org/pkg/encoding/xml/:
- func Marshal(v interface{}) ([]byte, error)
- func MarshalIndent(v interface{}, prefix, indent string) ([]byte, error)
- func Unmarshal(data []byte, v interface{}) error
- func (d *Decoder) Decode(v interface{}) error
- func (d *Decoder) DecodeElement(v interface{}, start *StartElement) error
- func (enc *Encoder) Encode(v interface{}) error
- func (enc *Encoder) EncodeElement(v interface{}, start StartElement) error
- // https://golang.org/pkg/expvar/:
- func (f Func) Value() interface{}
- // https://golang.org/pkg/fmt/:
- func Errorf(format string, a ...interface{}) error
- func Fprint(w io.Writer, a ...interface{}) (n int, err error)
- func Fprintf(w io.Writer, format string, a ...interface{}) (n int, err error)
- func Fprintln(w io.Writer, a ...interface{}) (n int, err error)
- func Fscan(r io.Reader, a ...interface{}) (n int, err error)
- func Fscanf(r io.Reader, format string, a ...interface{}) (n int, err error)
- func Fscanln(r io.Reader, a ...interface{}) (n int, err error)
- func Print(a ...interface{}) (n int, err error)
- func Printf(format string, a ...interface{}) (n int, err error)
- func Println(a ...interface{}) (n int, err error)
- func Scan(a ...interface{}) (n int, err error)
- func Scanf(format string, a ...interface{}) (n int, err error)
- func Scanln(a ...interface{}) (n int, err error)
- func Sprint(a ...interface{}) string
- func Sprintf(format string, a ...interface{}) string
- func Sprintln(a ...interface{}) string
- func Sscan(str string, a ...interface{}) (n int, err error)
- func Sscanf(str string, format string, a ...interface{}) (n int, err error)
- func Sscanln(str string, a ...interface{}) (n int, err error)
- // https://golang.org/pkg/go/ast/:
- func Fprint(w io.Writer, fset *token.FileSet, x interface{}, f FieldFilter) error
- func Print(fset *token.FileSet, x interface{}) error
- // https://golang.org/pkg/go/format/:
- func Node(dst io.Writer, fset *token.FileSet, node interface{}) error
- // https://golang.org/pkg/go/parser/:
- func ParseExprFrom(fset *token.FileSet, filename string, src interface{}, mode Mode) (ast.Expr, error)
- func ParseFile(fset *token.FileSet, filename string, src interface{}, mode Mode) (f *ast.File, err error)
- // https://golang.org/pkg/go/printer/:
- func Fprint(output io.Writer, fset *token.FileSet, node interface{}) error
- func (cfg *Config) Fprint(output io.Writer, fset *token.FileSet, node interface{}) error
- // https://golang.org/pkg/go/token/:
- func (s *FileSet) Read(decode func(interface{}) error) error
- func (s *FileSet) Write(encode func(interface{}) error) error
- // https://golang.org/pkg/html/template/:
- func HTMLEscaper(args ...interface{}) string
- func IsTrue(val interface{}) (truth, ok bool)
- func JSEscaper(args ...interface{}) string
- func URLQueryEscaper(args ...interface{}) string
- func (t *Template) Execute(wr io.Writer, data interface{}) error
- func (t *Template) ExecuteTemplate(wr io.Writer, name string, data interface{}) error
- // https://golang.org/pkg/log/:
- func Fatal(v ...interface{})
- func Fatalf(format string, v ...interface{})
- func Fatalln(v ...interface{})
- func Panic(v ...interface{})
- func Panicf(format string, v ...interface{})
- func Panicln(v ...interface{})
- func Print(v ...interface{})
- func Printf(format string, v ...interface{})
- func Println(v ...interface{})
- func (l *Logger) Fatal(v ...interface{})
- func (l *Logger) Fatalf(format string, v ...interface{})
- func (l *Logger) Fatalln(v ...interface{})
- func (l *Logger) Panic(v ...interface{})
- func (l *Logger) Panicf(format string, v ...interface{})
- func (l *Logger) Panicln(v ...interface{})
- func (l *Logger) Print(v ...interface{})
- func (l *Logger) Printf(format string, v ...interface{})
- func (l *Logger) Println(v ...interface{})
- // https://golang.org/pkg/net/rpc/:
- func Register(rcvr interface{}) error
- func RegisterName(name string, rcvr interface{}) error
- func (client *Client) Call(serviceMethod string, args interface{}, reply interface{}) error
- func (client *Client) Go(serviceMethod string, args interface{}, reply interface{}, done chan *Call) *Call
- func (server *Server) Register(rcvr interface{}) error
- func (server *Server) RegisterName(name string, rcvr interface{}) error
- // https://golang.org/pkg/net/textproto/:
- func (c *Conn) Cmd(format string, args ...interface{}) (id uint, err error)
- func (w *Writer) PrintfLine(format string, args ...interface{}) error
- // https://golang.org/pkg/os/:
- func (p *ProcessState) Sys() interface{}
- func (p *ProcessState) SysUsage() interface{}
- // https://golang.org/pkg/reflect/:
- func DeepEqual(x, y interface{}) bool
- func Swapper(slice interface{}) func(i, j int)
- func TypeOf(i interface{}) Type
- func ValueOf(i interface{}) Value
- func (v Value) Interface() (i interface{})
- // https://golang.org/pkg/runtime/:
- func KeepAlive(x interface{})
- func SetFinalizer(obj interface{}, finalizer interface{})
- // https://golang.org/pkg/runtime/pprof/:
- func (p *Profile) Add(value interface{}, skip int)
- func (p *Profile) Remove(value interface{})
- // https://golang.org/pkg/runtime/trace/:
- func Logf(ctx context.Context, category, format string, args ...interface{})
- // https://golang.org/pkg/sort/:
- func Slice(slice interface{}, less func(i, j int) bool)
- func SliceIsSorted(slice interface{}, less func(i, j int) bool) bool
- func SliceStable(slice interface{}, less func(i, j int) bool)
- // https://golang.org/pkg/sync/:
- func (m *Map) Delete(key interface{})
- func (m *Map) Load(key interface{}) (value interface{}, ok bool)
- func (m *Map) LoadOrStore(key, value interface{}) (actual interface{}, loaded bool)
- func (m *Map) Range(f func(key, value interface{}) bool)
- func (m *Map) Store(key, value interface{})
- func (p *Pool) Get() interface{}
- func (p *Pool) Put(x interface{})
- // https://golang.org/pkg/sync/atomic/:
- func (v *Value) Load() (x interface{})
- func (v *Value) Store(x interface{})
- // https://golang.org/pkg/syscall/js/:
- func TypedArrayOf(slice interface{}) TypedArray
- func ValueOf(x interface{}) Value
- func (v Value) Call(m string, args ...interface{}) Value
- func (v Value) Invoke(args ...interface{}) Value
- func (v Value) New(args ...interface{}) Value
- func (v Value) Set(p string, x interface{})
- func (v Value) SetIndex(i int, x interface{})
- // https://golang.org/pkg/testing/:
- func (c *B) Error(args ...interface{})
- func (c *B) Errorf(format string, args ...interface{})
- func (c *B) Fatal(args ...interface{})
- func (c *B) Fatalf(format string, args ...interface{})
- func (c *B) Log(args ...interface{})
- func (c *B) Logf(format string, args ...interface{})
- func (c *B) Skip(args ...interface{})
- func (c *B) Skipf(format string, args ...interface{})
- func (c *T) Error(args ...interface{})
- func (c *T) Errorf(format string, args ...interface{})
- func (c *T) Fatal(args ...interface{})
- func (c *T) Fatalf(format string, args ...interface{})
- func (c *T) Log(args ...interface{})
- func (c *T) Logf(format string, args ...interface{})
- func (c *T) Skip(args ...interface{})
- func (c *T) Skipf(format string, args ...interface{})
- // https://golang.org/pkg/testing/quick/:
- func Check(f interface{}, config *Config) error
- func CheckEqual(f, g interface{}, config *Config) error
- // https://golang.org/pkg/text/template/:
- func HTMLEscaper(args ...interface{}) string
- func IsTrue(val interface{}) (truth, ok bool)
- func JSEscaper(args ...interface{}) string
- func URLQueryEscaper(args ...interface{}) string
- func (t *Template) Execute(wr io.Writer, data interface{}) error
- func (t *Template) ExecuteTemplate(wr io.Writer, name string, data interface{}) error
- // https://golang.org/pkg/text/template/parse/:
- func Parse(name, text, leftDelim, rightDelim string, funcs ...map[string]interface{}) (map[string]*Tree, error)
- func New(name string, funcs ...map[string]interface{}) *Tree
- func (t *Tree) Parse(text, leftDelim, rightDelim string, treeSet map[string]*Tree, funcs ...map[string]interface{}) (tree *Tree, err error)
Advertisement
Add Comment
Please, Sign In to add comment