summary refs log tree commit diff stats
path: root/tests/stdlib/tmemory.nim
blob: 25b5d526ac8bb5240c02f828e1b9b002ef155240 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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.unsafeAddr, sizeof(SomeHash)) == 0