Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ignore (0.17 sec)

  1. api/go1.16.txt

    pkg syscall (darwin-arm64), const IFT_XETHER = 26
    pkg syscall (darwin-arm64), const IFT_XETHER ideal-int
    pkg syscall (darwin-arm64), const IGNBRK = 1
    pkg syscall (darwin-arm64), const IGNBRK ideal-int
    pkg syscall (darwin-arm64), const IGNCR = 128
    pkg syscall (darwin-arm64), const IGNCR ideal-int
    pkg syscall (darwin-arm64), const IGNPAR = 4
    pkg syscall (darwin-arm64), const IGNPAR ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  2. doc/go_spec.html

    <pre>
    one, two, three = '一', '二', '三'
    </pre>
    
    <p>
    The <a href="#Blank_identifier">blank identifier</a> provides a way to
    ignore right-hand side values in an assignment:
    </p>
    
    <pre>
    _ = x       // evaluate x but ignore it
    x, _ = f()  // evaluate f() but ignore second result value
    </pre>
    
    <p>
    The assignment proceeds in two phases.
    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