Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for io (0.22 sec)

  1. doc/go1.17_spec.html

    type I interface { m() }
    
    func f(y I) {
    	s := y.(string)        // illegal: string does not implement I (missing method m)
    	r := y.(io.Reader)     // r has type io.Reader and the dynamic type of y must implement both I and io.Reader
    	…
    }
    </pre>
    
    <p>
    A type assertion used in an <a href="#Assignments">assignment</a> or initialization of the special form
    </p>
    
    <pre>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    type I interface { m() }
    
    func f(y I) {
    	s := y.(string)        // illegal: string does not implement I (missing method m)
    	r := y.(io.Reader)     // r has type io.Reader and the dynamic type of y must implement both I and io.Reader
    	…
    }
    </pre>
    
    <p>
    A type assertion used in an <a href="#Assignment_statements">assignment statement</a> or initialization of the special form
    </p>
    
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  3. doc/go1.22.html

        </p>
      </dd>
    </dl><!-- html/template -->
    
    <dl id="io"><dt><a href="/pkg/io/">io</a></dt>
      <dd>
        <p><!-- https://go.dev/issue/61870, CL 526855 -->
          The new <a href="/pkg/io#SectionReader.Outer"><code>SectionReader.Outer</code></a> method returns the <a href="/pkg/io#ReaderAt"><code>ReaderAt</code></a>, offset, and size passed to <a href="/pkg/io#NewSectionReader"><code>NewSectionReader</code></a>.
        </p>
      </dd>
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  4. doc/asm.html

    The document is not comprehensive.
    </p>
    
    <p>
    The assembler is based on the input style of the Plan 9 assemblers, which is documented in detail
    <a href="https://9p.io/sys/doc/asm.html">elsewhere</a>.
    If you plan to write assembly language, you should read that document although much of it is Plan 9-specific.
    The current document provides a summary of the syntax and the differences with
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
Back to top