Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _methods_ (0.32 sec)

  1. doc/go1.17_spec.html

    	Writer  // includes methods of Writer in ReadWriter's method set
    }
    </pre>
    
    <p>
    A <i>union</i> of method sets contains the (exported and non-exported)
    methods of each method set exactly once, and methods with the
    <a href="#Uniqueness_of_identifiers">same</a> names must
    have <a href="#Type_identity">identical</a> signatures.
    </p>
    
    <pre>
    type ReadCloser interface {
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    <p>
    In its most basic form an interface specifies a (possibly empty) list of methods.
    The type set defined by such an interface is the set of types which implement all of
    those methods, and the corresponding <a href="#Method_sets">method set</a> consists
    exactly of the methods specified by the interface.
    Interfaces whose type sets can be defined entirely by a list of methods are called
    <i>basic interfaces.</i>
    </p>
    
    <pre>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top