Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for fixed (0.16 sec)

  1. doc/go1.22.html

    <!--{
    	"Title": "Go 1.22 Release Notes",
    	"Path":  "/doc/go1.22"
    }-->
    
    <!--
    NOTE: In this document and others in this directory, the convention is to
    set fixed-width phrases with non-fixed-width spaces, as in
    <code>hello</code> <code>world</code>.
    Do not send CLs removing the interior tags from such phrases.
    -->
    
    <style>
      main ul li { margin: 0.5em 0; }
    </style>
    
    <h2 id="introduction">DRAFT RELEASE NOTES — Introduction to Go 1.22</h2>
    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)
  2. doc/go1.17_spec.html

    <code>byte</code>, which is an <a href="#Alias_declarations">alias</a> for <code>uint8</code>, and
    <code>rune</code>, which is an alias for <code>int32</code>.
    Explicit conversions
    are required when different numeric types are mixed in an expression
    or assignment. For instance, <code>int32</code> and <code>int</code>
    are not the same type even though they may have the same size on a
    particular architecture.
    </p>
    
    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)
  3. doc/asm.html

    These modes accept only 1, 2, 4, and 8 as scale factors.
    </li>
    
    </ul>
    
    <p>
    When using the compiler and assembler's
    <code>-dynlink</code> or <code>-shared</code> modes,
    any load or store of a fixed memory location such as a global variable
    must be assumed to overwrite <code>CX</code>.
    Therefore, to be safe for use with these modes,
    assembly sources should typically avoid CX except between memory references.
    </p>
    
    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)
  4. doc/go_spec.html

    </p>
    
    
    <h3 id="Min_and_max">Min and max</h3>
    
    <p>
    The built-in functions <code>min</code> and <code>max</code> compute the
    smallest&mdash;or largest, respectively&mdash;value of a fixed number of
    arguments of <a href="#Comparison_operators">ordered types</a>.
    There must be at least one argument
    [<a href="#Go_1.21">Go 1.21</a>].
    </p>
    
    <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)
Back to top