summary refs log tree commit diff stats
path: root/tests/stdlib/tmemory.nim
blob: 0349ba03507b6342964a15b9674fb0bb65a086f3 (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.addr, sizeof(SomeHash)) == 0