blob: aae11ba18d384fd14743f1d570f1eb827191227d (
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
|
-- [external]: templates for the external functions.
import Base
import External.Types
open Primitives
open external
-- TODO: fill those bodies
/- [core::mem::swap] -/
def core.mem.swap
(T : Type) : T → T → State → Result (State × Unit) :=
fun _x _y s => .ret (s, ())
/- [core::mem::swap] -/
def core.mem.swap_back0
(T : Type) : T → T → State → State → Result (State × T) :=
fun _x y _s0 s1 => .ret (s1, y)
/- [core::mem::swap] -/
def core.mem.swap_back1
(T : Type) : T → T → State → State → Result (State × T) :=
fun x _y _s0 s1 => .ret (s1, x)
/- [core::num::nonzero::NonZeroU32::{14}::new] -/
def core.num.nonzero.NonZeroU32.new
:
U32 → State → Result (State × (Option core_num_nonzero_non_zero_u32_t)) :=
fun _ _ => .fail .panic
/- [core::option::Option::{0}::unwrap] -/
def core.option.Option.unwrap
(T : Type) : Option T → State → Result (State × T) :=
fun _ _ => .fail .panic
|