About 13,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 …

  2. 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 …

  3. 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...

  4. go - What's the meaning of interface {}? - Stack Overflow

    Apr 18, 2014 · 11 From the Golang Specifications: An interface type specifies a method set called its interface. A variable of interface type can store a value of any type with a method set that is …

  5. 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 …

  6. 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 …

  7. Parsing RFC-3339 / ISO-8601 date-time string in Go

    etc. Golang, instead of using codes such as above, uses date and time format placeholders that look like date and time only. Go uses standard time, which is: Mon Jan 2 15:04:05 MST 2006 …

  8. go - What does nil mean in Golang? - Stack Overflow

    Mar 14, 2016 · 0 In Golang, datatype can use nil is pointers, interfaces, maps, slices, channels, function types and errors in String value is "" in INT value is ZERO

  9. The maximum value for an int type in Go - Stack Overflow

    How does one specify the maximum value representable for an unsigned integer type? I would like to know how to initialize min in the loop below that iteratively computes min and max …

  10. How to search for an element in a golang slice - Stack Overflow

    Jul 29, 2016 · How to search for an element in a golang slice Asked 9 years, 2 months ago Modified 3 months ago Viewed 367k times