Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for inherit (0.17 sec)

  1. doc/go_mem.html

    memory locations accessible to multiple goroutines.
    </p>
    
    <p>
    Not introducing data races into race-free programs means not moving
    writes out of conditional statements in which they appear.
    For example, a compiler must not invert the conditional in this program:
    </p>
    
    <pre>
    *p = 1
    if cond {
    	*p = 2
    }
    </pre>
    
    <p>
    That is, the compiler must not rewrite the program into this one:
    </p>
    
    <pre>
    *p = 2
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  2. doc/go1.22.html

        </p>
    
        <p><!-- https://go.dev/issue/63913 --><!-- CL 540155 -->
          <code>Insert</code> now always panics if the argument <code>i</code> is out of range. Previously it did not panic in this situation if there were no elements to be inserted.
        </p>
      </dd>
    </dl><!-- slices -->
    
    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)
  3. doc/go1.17_spec.html

    	BlockSize() int
    	Encrypt(src, dst []byte)
    	Decrypt(src, dst []byte)
    }
    </pre>
    
    <p>
    A defined type may have <a href="#Method_declarations">methods</a> associated with it.
    It does not inherit any methods bound to the given type,
    but the <a href="#Method_sets">method set</a>
    of an interface type or of elements of a composite type remains unchanged:
    </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)
  4. doc/go_spec.html

    	BlockSize() int
    	Encrypt(src, dst []byte)
    	Decrypt(src, dst []byte)
    }
    </pre>
    
    <p>
    A defined type may have <a href="#Method_declarations">methods</a> associated with it.
    It does not inherit any methods bound to the given type,
    but the <a href="#Method_sets">method set</a>
    of an interface type or of elements of a composite type remains unchanged:
    </p>
    
    <pre>
    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