You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 8, 2025. It is now read-only.
"The book "Programming in Go" made the claim: "The []byte(string) conversion is very fast (O(1)) since under the hood the []byte can simply refer to the string’s underlying bytes with no copying required. The same is true of the reverse conversion, string([]byte); again the underlying bytes are not copied, so the conversion is O(1)." So it seems this claim was incorrect.
But the subsequent comment also links to this open issue golang/go#2205.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
aqua-verifier-go/verify/verify.go
Line 429 in 5655d22
According to a comment in https://stackoverflow.com/questions/14373634/how-expensive-is-bytestring
But the subsequent comment also links to this open issue golang/go#2205.
The text was updated successfully, but these errors were encountered: