Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // 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/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/debug/dwarf/:
- func (e *Entry) Val(a Attr) interface{}
- // https://golang.org/pkg/expvar/:
- func (f Func) Value() interface{}
- // 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/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/os/:
- func (p *ProcessState) Sys() interface{}
- func (p *ProcessState) SysUsage() interface{}
- // https://golang.org/pkg/runtime/:
- func SetFinalizer(obj interface{}, finalizer 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/testing/quick/:
- func Check(f interface{}, config *Config) error
- func CheckEqual(f, g interface{}, config *Config) 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