- Sort Score
- Result 10 results
- Languages All
Results 211 - 212 of 212 for unnecessarily (0.2 sec)
-
doc/go_spec.html
As an exception, a <a href="#Comparison_operators">strictly comparable</a> type constraint may also be satisfied by a <a href="#Comparison_operators">comparable</a> (not necessarily strictly comparable) type argument [<a href="#Go_1.20">Go 1.20</a>]. More precisely: </p> <p> A type T <i>satisfies</i> a constraint <code>C</code> if </p> <ul> <li>
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue May 06 19:12:15 UTC 2025 - 286.2K bytes - Viewed (0) -
lib/fips140/v1.0.0.zip
that can be found in the LICENSE file. // Package alias implements memory aliasing tests. // This code also exists as golang.org/x/crypto/internal/alias. package alias import "unsafe" // AnyOverlap reports whether x and y share memory at any (not necessarily // corresponding) index. The memory beyond the slice length is ignored. func AnyOverlap(x, y []byte) bool { return len(x) > 0 && len(y) > 0 && uintptr(unsafe.Pointer(&x[0])) <= uintptr(unsafe.Pointer(&y[len(y)-1])) && uintptr(unsafe.Pointer(&y[0]))...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)