mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
* deprecate unsafeAddr; extend addr
addr is now available for all addressable locations, unsafeAddr is deprecated and become an alias for addr
* follow @Vindaar's advice
* change the signature of addr
* unsafeAddr => addr (stdlib)
* Update changelog.md
* unsafeAddr => addr (tests)
* Revert "unsafeAddr => addr (stdlib)"
This reverts commit ab83c99c50.
* doc changes; thanks to @konsumlamm
Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com>
Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com>
16 lines
295 B
Nim
16 lines
295 B
Nim
|
|
block: # cmpMem
|
|
type
|
|
SomeHash = array[15, byte]
|
|
|
|
var
|
|
a: SomeHash
|
|
b: SomeHash
|
|
|
|
a[^1] = byte(1)
|
|
let c = a
|
|
|
|
doAssert cmpMem(a.addr, b.addr, sizeof(SomeHash)) > 0
|
|
doAssert cmpMem(b.addr, a.addr, sizeof(SomeHash)) < 0
|
|
doAssert cmpMem(a.addr, c.addr, sizeof(SomeHash)) == 0
|