Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Estany (0.27 sec)

  1. doc/go1.17_spec.html

    <h3 id="Bootstrapping">Bootstrapping</h3>
    
    <p>
    Current implementations provide several built-in functions useful during
    bootstrapping. These functions are documented for completeness but are not
    guaranteed to stay in the language. They do not return a result.
    </p>
    
    <pre class="grammar">
    Function   Behavior
    
    print      prints all arguments; formatting of arguments is implementation-specific
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. src/builtin/builtin.go

    // for any integer type: int, uint, int8 etc.
    type IntegerType int
    
    // FloatType is here for the purposes of documentation only. It is a stand-in
    // for either float type: float32 or float64.
    type FloatType float32
    
    // ComplexType is here for the purposes of documentation only. It is a
    // stand-in for either complex type: complex64 or complex128.
    type ComplexType complex64
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  3. doc/go_spec.html

    </p>
    
    <ul>
    <li>
    	Both type parameters are identical.
    </li>
    <li>
    	At most one of the type parameters has a known type argument.
    	In this case, the type parameters are <i>joined</i>:
    	they both stand for the same type argument.
    	If neither type parameter has a known type argument yet,
    	a future type argument inferred for one the type parameters
    	is simultaneously inferred for both of them.
    </li>
    <li>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top