About 11,900,000 results
Open links in new tab
  1. Difference between := and = operators in Go - Stack Overflow

    May 5, 2020 · What is the difference between the = and := operators, and what are the use cases for them? They both seem to be for an assignment?

  2. go - What is the meaning of '*' and '&'? - Stack Overflow

    Golang does not allow pointer-arithmetic (arrays do not decay to pointers) and insecure casting. All downcasts will be checked using the runtime-type of the variable and either panic or return …

  3. What is the difference between = and <- in golang

    Oct 25, 2015 · The = operator deals with variable assignment as in most languages. It expresses the idea of wanting to update the value that an identifier references. The <- operator …

  4. What is the idiomatic Go equivalent of C's ternary operator?

    Nov 14, 2013 · 8 As others have noted, golang does not have a ternary operator or any equivalent. This is a deliberate decision thought to improve readability.

  5. What are conventions for filenames in Go? - Stack Overflow

    I could find the conventions for naming packages in Go: no underscore between words, everything lowercase. Does this convention apply to the filenames too? Do you also put one …

  6. overloading - Optional Parameters in Go? - Stack Overflow

    I think not having optional parameters is a good decision. I've seen optional parameters abused pretty severely in C++ -- 40+ arguments. It's very error-prone to count through the arguments …

  7. go - Is it possible to capture a Ctrl+C signal (SIGINT) and run a ...

    Jun 29, 2012 · I want to capture the Ctrl+C (SIGINT) signal sent from the console and print out some partial run totals.

  8. go - What is a rune? - Stack Overflow

    What is a rune in Go? I've been googling but Golang only says in one line: rune is an alias for int32. But how come integers are used all around like swapping cases? The following is a …

  9. string - Format errors in Go - %s %v or %w - Stack Overflow

    Apr 18, 2020 · You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. What's reputation …

  10. How to do a https request with bad certificate? - Stack Overflow

    this is not a "bad certificate" it's a certificate with a different CN. InsecureSkipVerify is not a legitimate use here. You must set ServerName in the tls.Config to match what you are trying to …