Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Inversa (0.21 sec)

  1. doc/go1.17_spec.html

    and the return value of the function is an untyped floating-point constant.
    </p>
    
    <p>
    The <code>real</code> and <code>imag</code> functions together form the inverse of
    <code>complex</code>, so for a value <code>z</code> of a complex type <code>Z</code>,
    <code>z&nbsp;==&nbsp;Z(complex(real(z),&nbsp;imag(z)))</code>.
    </p>
    
    <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)
  2. src/archive/tar/common.go

    		}
    	}
    	return dst
    }
    
    // invertSparseEntries converts a sparse map from one form to the other.
    // If the input is sparseHoles, then it will output sparseDatas and vice-versa.
    // The input must have been already validated.
    //
    // This function mutates src and returns a normalized map where:
    //   - adjacent fragments are coalesced together
    //   - only the last fragment may be empty
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  3. doc/go_spec.html

    and the return value of the function is an untyped floating-point constant.
    </p>
    
    <p>
    The <code>real</code> and <code>imag</code> functions together form the inverse of
    <code>complex</code>, so for a value <code>z</code> of a complex type <code>Z</code>,
    <code>z&nbsp;==&nbsp;Z(complex(real(z),&nbsp;imag(z)))</code>.
    </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)
  4. src/bytes/bytes_test.go

    		}
    	}
    }
    
    func tenRunes(r rune) string {
    	runes := make([]rune, 10)
    	for i := range runes {
    		runes[i] = r
    	}
    	return string(runes)
    }
    
    // User-defined self-inverse mapping function
    func rot13(r rune) rune {
    	const step = 13
    	if r >= 'a' && r <= 'z' {
    		return ((r - 'a' + step) % 26) + 'a'
    	}
    	if r >= 'A' && r <= 'Z' {
    		return ((r - 'A' + step) % 26) + 'A'
    	}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
Back to top