Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. doc/go1.22.html

      detailed in <a href="/issue/61716">proposal #61716</a>. The most important changes are:
    </p>
    
    <ul>
    <li>The <code>Read</code> method, deprecated in <code>math/rand</code>,
    was not carried forward for <code>math/rand/v2</code>.
    (It remains available in <code>math/rand</code>.)
    The vast majority of calls to <code>Read</code> should use
    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/go_spec.html

    <pre class="grammar">
    Import declaration          Local name of Sin
    
    import   "lib/math"         math.Sin
    import m "lib/math"         m.Sin
    import . "lib/math"         Sin
    </pre>
    
    <p>
    An import declaration declares a dependency relation between
    the importing and imported package.
    It is illegal for a package to import itself, directly or indirectly,
    or to directly import a package without
    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)
  3. doc/go1.17_spec.html

    <pre class="grammar">
    Import declaration          Local name of Sin
    
    import   "lib/math"         math.Sin
    import m "lib/math"         m.Sin
    import . "lib/math"         Sin
    </pre>
    
    <p>
    An import declaration declares a dependency relation between
    the importing and imported package.
    It is illegal for a package to import itself, directly or indirectly,
    or to directly import a package without
    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/asm.html

    are many examples in the sources of the standard library, in packages such as
    <a href="/pkg/runtime/"><code>runtime</code></a> and
    <a href="/pkg/math/big/"><code>math/big</code></a>.
    You can also examine what the compiler emits as assembly code
    (the actual output may differ from what you see here):
    </p>
    
    <pre>
    $ cat x.go
    package main
    
    func main() {
    	println(3)
    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)
Back to top