summaryrefslogtreecommitdiff
path: root/tests/lean/Bitwise.lean
blob: 7c47e3dda0b5e6b0fb8022382c6985168a46e52e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
-- THIS FILE WAS AUTOMATICALLY GENERATED BY AENEAS
-- [bitwise]
import Base
open Primitives

namespace bitwise

/- [bitwise::shift_u32]:
   Source: 'src/bitwise.rs', lines 3:0-3:31 -/
def shift_u32 (a : U32) : Result U32 :=
  do
  let t  a >>> 16#usize
  t <<< 16#usize

/- [bitwise::shift_i32]:
   Source: 'src/bitwise.rs', lines 10:0-10:31 -/
def shift_i32 (a : I32) : Result I32 :=
  do
  let t  a >>> 16#isize
  t <<< 16#isize

/- [bitwise::xor_u32]:
   Source: 'src/bitwise.rs', lines 17:0-17:37 -/
def xor_u32 (a : U32) (b : U32) : Result U32 :=
  Result.ret (a ^^^ b)

/- [bitwise::or_u32]:
   Source: 'src/bitwise.rs', lines 21:0-21:36 -/
def or_u32 (a : U32) (b : U32) : Result U32 :=
  Result.ret (a ||| b)

/- [bitwise::and_u32]:
   Source: 'src/bitwise.rs', lines 25:0-25:37 -/
def and_u32 (a : U32) (b : U32) : Result U32 :=
  Result.ret (a &&& b)

end bitwise