Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ReadCloser (0.2 sec)

  1. api/go1.16.txt

    pkg archive/zip, method (*ReadCloser) Open(string) (fs.File, error)
    pkg archive/zip, method (*Reader) Open(string) (fs.File, error)
    pkg crypto/x509, method (SystemRootsError) Unwrap() error
    pkg debug/elf, const DT_ADDRRNGHI = 1879047935
    pkg debug/elf, const DT_ADDRRNGHI DynTag
    pkg debug/elf, const DT_ADDRRNGLO = 1879047680
    pkg debug/elf, const DT_ADDRRNGLO DynTag
    pkg debug/elf, const DT_AUDIT = 1879047932
    pkg debug/elf, const DT_AUDIT DynTag
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  2. doc/go_spec.html

    </pre>
    
    <p>
    When embedding interfaces, 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 {
    	Reader   // includes methods of Reader in ReadCloser's method set
    	Close()  // illegal: signatures of Reader.Close and Close are different
    }
    </pre>
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 02 00:58:01 UTC 2024
    - 282.5K bytes
    - Viewed (0)
Back to top