Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Operators_and_punctuation (0.24 sec)

  1. src/cmd/cgo/godefs.go

    // information) operators.
    var gofmtLineReplacer = strings.NewReplacer(
    	// Want to replace \n without ; after everything from
    	// https://golang.org/ref/spec#Operators_and_punctuation
    	// EXCEPT ++ -- ) ] }
    	"++\n", "++;",
    	"--\n", "--;",
    
    	"+\n", "+ ",
    	"-\n", "- ",
    	"*\n", "* ",
    	"/\n", "/ ",
    	"%\n", "% ",
    	"&\n", "& ",
    	"|\n", "| ",
    	"^\n", "^ ",
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Sep 08 14:33:35 GMT 2022
    - 4.5K bytes
    - Viewed (0)
  2. doc/go_spec.html

    	<li>one of the <a href="#Keywords">keywords</a>
    	    <code>break</code>,
    	    <code>continue</code>,
    	    <code>fallthrough</code>, or
    	    <code>return</code>
    	</li>
    
    	<li>one of the <a href="#Operators_and_punctuation">operators and punctuation</a>
    	    <code>++</code>,
    	    <code>--</code>,
    	    <code>)</code>,
    	    <code>]</code>, or
    	    <code>}</code>
    	</li>
    </ul>
    </li>
    
    <li>
    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)
  3. doc/go1.17_spec.html

    	<li>one of the <a href="#Keywords">keywords</a>
    	    <code>break</code>,
    	    <code>continue</code>,
    	    <code>fallthrough</code>, or
    	    <code>return</code>
    	</li>
    
    	<li>one of the <a href="#Operators_and_punctuation">operators and punctuation</a>
    	    <code>++</code>,
    	    <code>--</code>,
    	    <code>)</code>,
    	    <code>]</code>, or
    	    <code>}</code>
    	</li>
    </ul>
    </li>
    
    <li>
    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)
Back to top