About 12,600,000 results
Open links in new tab
  1. 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 false as …

  2. Go << and >> operators - Stack Overflow

    Apr 27, 2011 · Could someone please explain to me the usage of &lt;&lt; and &gt;&gt; in Go? I guess it is similar to some other languages.

  3. What is the difference between []string and ...string in golang?

    Oct 16, 2012 · @StephenWeinberg: Yes, my "nothing really" answer to the "what's the difference" quote is answering the question that was asked about the difference between the slice generated by the …

  4. How to compare if two structs, slices or maps are equal?

    I want to check if two structs, slices and maps are equal. But I'm running into problems with the following code. See my comments at the relevant lines. package main import ( "fmt" "refl...

  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 struct in one file ...

  6. How to decode a JWT token in Go? - Stack Overflow

    As of June 2021 there is a community fork golang-jwt/jwt, officially blessed by Dave Grijalva, the original author. This also means that the library import path has changed. Note that the current major version …

  7. Newest 'go' Questions - Stack Overflow

    Golang 1.24 provides synctest, which can create isolated environments with synctest.Run(f) called bubbles that have their own synthetic clock. This is really useful for testing my production code, ...

  8. 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 and make …

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

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

  10. 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 function