Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isSupported (0.19 sec)

  1. doc/go1.17_spec.html

    </pre>
    
    <p>
    Constant expressions are always evaluated exactly; intermediate values and the
    constants themselves may require precision significantly larger than supported
    by any predeclared type in the language. The following are legal declarations:
    </p>
    
    <pre>
    const Huge = 1 &lt;&lt; 100         // Huge == 1267650600228229401496703205376  (untyped integer constant)
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/asm.html

    <p>
    The <code>PCALIGN</code> pseudo-instruction is used to indicate that the next instruction should be aligned
    to a specified boundary by padding with no-op instructions.
    </p>
    
    <p>
    It is currently supported on arm64, amd64, ppc64, loong64 and riscv64.
    
    For example, the start of the <code>MOVD</code> instruction below is aligned to 32 bytes:
    <pre>
    PCALIGN $32
    MOVD $2, R0
    </pre>
    </p>
    
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  3. doc/go_spec.html

    <p>
    A <i>type constraint</i> is an <a href="#Interface_types">interface</a> that defines the
    set of permissible type arguments for the respective type parameter and controls the
    operations supported by values of that type parameter
    [<a href="#Go_1.18">Go 1.18</a>].
    </p>
    
    <pre class="ebnf">
    TypeConstraint = TypeElem .
    </pre>
    
    <p>
    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