summaryrefslogtreecommitdiff
path: root/tests/coq
diff options
context:
space:
mode:
Diffstat (limited to 'tests/coq')
-rw-r--r--tests/coq/betree/BetreeMain_Funs.v14
-rw-r--r--tests/coq/demo/Demo.v4
-rw-r--r--tests/coq/traits/Traits.v143
3 files changed, 78 insertions, 83 deletions
diff --git a/tests/coq/betree/BetreeMain_Funs.v b/tests/coq/betree/BetreeMain_Funs.v
index cefab0f4..3863a90f 100644
--- a/tests/coq/betree/BetreeMain_Funs.v
+++ b/tests/coq/betree/BetreeMain_Funs.v
@@ -159,7 +159,7 @@ Definition betree_List_hd (T : Type) (self : betree_List_t T) : result T :=
(** [betree_main::betree::{betree_main::betree::List<(u64, T)>#2}::head_has_key]:
Source: 'src/betree.rs', lines 327:4-327:44 *)
-Definition betree_ListTupleU64T_head_has_key
+Definition betree_ListPairU64T_head_has_key
(T : Type) (self : betree_List_t (u64 * T)) (key : u64) : result bool :=
match self with
| Betree_List_Cons hd _ => let (i, _) := hd in Return (i s= key)
@@ -169,7 +169,7 @@ Definition betree_ListTupleU64T_head_has_key
(** [betree_main::betree::{betree_main::betree::List<(u64, T)>#2}::partition_at_pivot]:
Source: 'src/betree.rs', lines 339:4-339:73 *)
-Fixpoint betree_ListTupleU64T_partition_at_pivot
+Fixpoint betree_ListPairU64T_partition_at_pivot
(T : Type) (n : nat) (self : betree_List_t (u64 * T)) (pivot : u64) :
result ((betree_List_t (u64 * T)) * (betree_List_t (u64 * T)))
:=
@@ -182,7 +182,7 @@ Fixpoint betree_ListTupleU64T_partition_at_pivot
if i s>= pivot
then Return (Betree_List_Nil, Betree_List_Cons (i, t) tl)
else (
- p <- betree_ListTupleU64T_partition_at_pivot T n1 tl pivot;
+ p <- betree_ListPairU64T_partition_at_pivot T n1 tl pivot;
let (ls0, ls1) := p in
Return (Betree_List_Cons (i, t) ls0, ls1))
| Betree_List_Nil => Return (Betree_List_Nil, Betree_List_Nil)
@@ -286,7 +286,7 @@ Fixpoint betree_Node_apply_upserts
match n with
| O => Fail_ OutOfFuel
| S n1 =>
- b <- betree_ListTupleU64T_head_has_key betree_Message_t msgs key;
+ b <- betree_ListPairU64T_head_has_key betree_Message_t msgs key;
if b
then (
p <- betree_List_pop_front (u64 * betree_Message_t) msgs;
@@ -462,7 +462,7 @@ Definition betree_Node_apply_to_internal
:=
p <- betree_Node_lookup_first_message_for_key n key msgs;
let (msgs1, lookup_first_message_for_key_back) := p in
- b <- betree_ListTupleU64T_head_has_key betree_Message_t msgs1 key;
+ b <- betree_ListPairU64T_head_has_key betree_Message_t msgs1 key;
if b
then
match new_msg with
@@ -570,7 +570,7 @@ Definition betree_Node_apply_to_leaf
:=
p <- betree_Node_lookup_mut_in_bindings n key bindings;
let (bindings1, lookup_mut_in_bindings_back) := p in
- b <- betree_ListTupleU64T_head_has_key u64 bindings1 key;
+ b <- betree_ListPairU64T_head_has_key u64 bindings1 key;
if b
then (
p1 <- betree_List_pop_front (u64 * u64) bindings1;
@@ -632,7 +632,7 @@ Fixpoint betree_Internal_flush
| O => Fail_ OutOfFuel
| S n1 =>
p <-
- betree_ListTupleU64T_partition_at_pivot betree_Message_t n1 content
+ betree_ListPairU64T_partition_at_pivot betree_Message_t n1 content
self.(betree_Internal_pivot);
let (msgs_left, msgs_right) := p in
len_left <- betree_List_len (u64 * betree_Message_t) n1 msgs_left;
diff --git a/tests/coq/demo/Demo.v b/tests/coq/demo/Demo.v
index 22a0a131..ec7ca29d 100644
--- a/tests/coq/demo/Demo.v
+++ b/tests/coq/demo/Demo.v
@@ -160,8 +160,8 @@ Definition CounterUsize : Counter_t usize := {|
(** [demo::use_counter]:
Source: 'src/demo.rs', lines 95:0-95:59 *)
Definition use_counter
- (T : Type) (counterTInst : Counter_t T) (cnt : T) : result (usize * T) :=
- counterTInst.(Counter_t_incr) cnt
+ (T : Type) (counterInst : Counter_t T) (cnt : T) : result (usize * T) :=
+ counterInst.(Counter_t_incr) cnt
.
End Demo.
diff --git a/tests/coq/traits/Traits.v b/tests/coq/traits/Traits.v
index 70ebf483..a9cd7e91 100644
--- a/tests/coq/traits/Traits.v
+++ b/tests/coq/traits/Traits.v
@@ -44,31 +44,29 @@ Definition test_bool_trait_bool (x : bool) : result bool :=
(** [traits::{(traits::BoolTrait for core::option::Option<T>)#1}::get_bool]:
Source: 'src/traits.rs', lines 23:4-23:30 *)
-Definition boolTraitcoreoptionOptionT_get_bool
+Definition boolTraitOption_get_bool
(T : Type) (self : option T) : result bool :=
match self with | None => Return false | Some _ => Return true end
.
(** Trait implementation: [traits::{(traits::BoolTrait for core::option::Option<T>)#1}]
Source: 'src/traits.rs', lines 22:0-22:31 *)
-Definition BoolTraitcoreoptionOptionT (T : Type) : BoolTrait_t (option T) := {|
- BoolTrait_t_get_bool := boolTraitcoreoptionOptionT_get_bool T;
+Definition BoolTraitOption (T : Type) : BoolTrait_t (option T) := {|
+ BoolTrait_t_get_bool := boolTraitOption_get_bool T;
|}.
(** [traits::test_bool_trait_option]:
Source: 'src/traits.rs', lines 31:0-31:54 *)
Definition test_bool_trait_option (T : Type) (x : option T) : result bool :=
- b <- boolTraitcoreoptionOptionT_get_bool T x;
- if b
- then boolTrait_ret_true (BoolTraitcoreoptionOptionT T) x
- else Return false
+ b <- boolTraitOption_get_bool T x;
+ if b then boolTrait_ret_true (BoolTraitOption T) x else Return false
.
(** [traits::test_bool_trait]:
Source: 'src/traits.rs', lines 35:0-35:50 *)
Definition test_bool_trait
- (T : Type) (boolTraitTInst : BoolTrait_t T) (x : T) : result bool :=
- boolTraitTInst.(BoolTrait_t_get_bool) x
+ (T : Type) (boolTraitInst : BoolTrait_t T) (x : T) : result bool :=
+ boolTraitInst.(BoolTrait_t_get_bool) x
.
(** Trait declaration: [traits::ToU64]
@@ -92,24 +90,23 @@ Definition ToU64U64 : ToU64_t u64 := {| ToU64_t_to_u64 := toU64U64_to_u64; |}.
(** [traits::{(traits::ToU64 for (A, A))#3}::to_u64]:
Source: 'src/traits.rs', lines 50:4-50:26 *)
Definition toU64Pair_to_u64
- (A : Type) (toU64AInst : ToU64_t A) (self : (A * A)) : result u64 :=
+ (A : Type) (toU64Inst : ToU64_t A) (self : (A * A)) : result u64 :=
let (t, t1) := self in
- i <- toU64AInst.(ToU64_t_to_u64) t;
- i1 <- toU64AInst.(ToU64_t_to_u64) t1;
+ i <- toU64Inst.(ToU64_t_to_u64) t;
+ i1 <- toU64Inst.(ToU64_t_to_u64) t1;
u64_add i i1
.
(** Trait implementation: [traits::{(traits::ToU64 for (A, A))#3}]
Source: 'src/traits.rs', lines 49:0-49:31 *)
-Definition ToU64Pair (A : Type) (toU64AInst : ToU64_t A) : ToU64_t (A * A)
- := {|
- ToU64_t_to_u64 := toU64Pair_to_u64 A toU64AInst;
+Definition ToU64Pair (A : Type) (toU64Inst : ToU64_t A) : ToU64_t (A * A) := {|
+ ToU64_t_to_u64 := toU64Pair_to_u64 A toU64Inst;
|}.
(** [traits::f]:
Source: 'src/traits.rs', lines 55:0-55:36 *)
-Definition f (T : Type) (toU64TInst : ToU64_t T) (x : (T * T)) : result u64 :=
- toU64Pair_to_u64 T toU64TInst x
+Definition f (T : Type) (toU64Inst : ToU64_t T) (x : (T * T)) : result u64 :=
+ toU64Pair_to_u64 T toU64Inst x
.
(** [traits::g]:
@@ -133,29 +130,29 @@ Arguments wrapper_x { _ }.
(** [traits::{(traits::ToU64 for traits::Wrapper<T>)#4}::to_u64]:
Source: 'src/traits.rs', lines 75:4-75:26 *)
-Definition toU64traitsWrapperT_to_u64
- (T : Type) (toU64TInst : ToU64_t T) (self : Wrapper_t T) : result u64 :=
- toU64TInst.(ToU64_t_to_u64) self.(wrapper_x)
+Definition toU64traitsWrapper_to_u64
+ (T : Type) (toU64Inst : ToU64_t T) (self : Wrapper_t T) : result u64 :=
+ toU64Inst.(ToU64_t_to_u64) self.(wrapper_x)
.
(** Trait implementation: [traits::{(traits::ToU64 for traits::Wrapper<T>)#4}]
Source: 'src/traits.rs', lines 74:0-74:35 *)
-Definition ToU64traitsWrapperT (T : Type) (toU64TInst : ToU64_t T) : ToU64_t
+Definition ToU64traitsWrapper (T : Type) (toU64Inst : ToU64_t T) : ToU64_t
(Wrapper_t T) := {|
- ToU64_t_to_u64 := toU64traitsWrapperT_to_u64 T toU64TInst;
+ ToU64_t_to_u64 := toU64traitsWrapper_to_u64 T toU64Inst;
|}.
(** [traits::h1]:
Source: 'src/traits.rs', lines 80:0-80:33 *)
Definition h1 (x : Wrapper_t u64) : result u64 :=
- toU64traitsWrapperT_to_u64 u64 ToU64U64 x
+ toU64traitsWrapper_to_u64 u64 ToU64U64 x
.
(** [traits::h2]:
Source: 'src/traits.rs', lines 84:0-84:41 *)
Definition h2
- (T : Type) (toU64TInst : ToU64_t T) (x : Wrapper_t T) : result u64 :=
- toU64traitsWrapperT_to_u64 T toU64TInst x
+ (T : Type) (toU64Inst : ToU64_t T) (x : Wrapper_t T) : result u64 :=
+ toU64traitsWrapper_to_u64 T toU64Inst x
.
(** Trait declaration: [traits::ToType]
@@ -182,8 +179,8 @@ Definition ToTypeU64Bool : ToType_t u64 bool := {|
(** Trait declaration: [traits::OfType]
Source: 'src/traits.rs', lines 98:0-98:16 *)
Record OfType_t (Self : Type) := mkOfType_t {
- OfType_t_of_type : forall (T : Type) (toTypeTSelfInst : ToType_t T Self), T
- -> result Self;
+ OfType_t_of_type : forall (T : Type) (toTypeInst : ToType_t T Self), T ->
+ result Self;
}.
Arguments mkOfType_t { _ }.
@@ -192,32 +189,32 @@ Arguments OfType_t_of_type { _ }.
(** [traits::h3]:
Source: 'src/traits.rs', lines 104:0-104:50 *)
Definition h3
- (T1 T2 : Type) (ofTypeT1Inst : OfType_t T1) (toTypeT2T1Inst : ToType_t T2 T1)
+ (T1 T2 : Type) (ofTypeInst : OfType_t T1) (toTypeInst : ToType_t T2 T1)
(y : T2) :
result T1
:=
- ofTypeT1Inst.(OfType_t_of_type) T2 toTypeT2T1Inst y
+ ofTypeInst.(OfType_t_of_type) T2 toTypeInst y
.
(** Trait declaration: [traits::OfTypeBis]
Source: 'src/traits.rs', lines 109:0-109:36 *)
Record OfTypeBis_t (Self T : Type) := mkOfTypeBis_t {
- OfTypeBis_tOfTypeBis_t_ToTypeTSelfInst : ToType_t T Self;
+ OfTypeBis_tOfTypeBis_t_ToTypeInst : ToType_t T Self;
OfTypeBis_t_of_type : T -> result Self;
}.
Arguments mkOfTypeBis_t { _ _ }.
-Arguments OfTypeBis_tOfTypeBis_t_ToTypeTSelfInst { _ _ }.
+Arguments OfTypeBis_tOfTypeBis_t_ToTypeInst { _ _ }.
Arguments OfTypeBis_t_of_type { _ _ }.
(** [traits::h4]:
Source: 'src/traits.rs', lines 118:0-118:57 *)
Definition h4
- (T1 T2 : Type) (ofTypeBisT1T2Inst : OfTypeBis_t T1 T2) (toTypeT2T1Inst :
- ToType_t T2 T1) (y : T2) :
+ (T1 T2 : Type) (ofTypeBisInst : OfTypeBis_t T1 T2) (toTypeInst : ToType_t T2
+ T1) (y : T2) :
result T1
:=
- ofTypeBisT1T2Inst.(OfTypeBis_t_of_type) y
+ ofTypeBisInst.(OfTypeBis_t_of_type) y
.
(** [traits::TestType]
@@ -255,10 +252,10 @@ Definition TestType_test_TestTraittraitsTestTypetestTestType1 :
(** [traits::{traits::TestType<T>#6}::test]:
Source: 'src/traits.rs', lines 126:4-126:36 *)
Definition testType_test
- (T : Type) (toU64TInst : ToU64_t T) (self : TestType_t T) (x : T) :
+ (T : Type) (toU64Inst : ToU64_t T) (self : TestType_t T) (x : T) :
result bool
:=
- x1 <- toU64TInst.(ToU64_t_to_u64) x;
+ x1 <- toU64Inst.(ToU64_t_to_u64) x;
if x1 s> 0%u64
then testType_test_TestTraittraitsTestTypetestTestType1_test 0%u64
else Return false
@@ -339,17 +336,17 @@ Definition WithConstTyBool32 : WithConstTy_t bool 32%usize := {|
(** [traits::use_with_const_ty1]:
Source: 'src/traits.rs', lines 183:0-183:75 *)
Definition use_with_const_ty1
- (H : Type) (LEN : usize) (withConstTyHLENInst : WithConstTy_t H LEN) :
+ (H : Type) (LEN : usize) (withConstTyInst : WithConstTy_t H LEN) :
result usize
:=
- Return withConstTyHLENInst.(WithConstTy_tWithConstTy_t_LEN1)
+ Return withConstTyInst.(WithConstTy_tWithConstTy_t_LEN1)
.
(** [traits::use_with_const_ty2]:
Source: 'src/traits.rs', lines 187:0-187:73 *)
Definition use_with_const_ty2
- (H : Type) (LEN : usize) (withConstTyHLENInst : WithConstTy_t H LEN)
- (w : withConstTyHLENInst.(WithConstTy_tWithConstTy_t_W)) :
+ (H : Type) (LEN : usize) (withConstTyInst : WithConstTy_t H LEN)
+ (w : withConstTyInst.(WithConstTy_tWithConstTy_t_W)) :
result unit
:=
Return tt
@@ -358,12 +355,11 @@ Definition use_with_const_ty2
(** [traits::use_with_const_ty3]:
Source: 'src/traits.rs', lines 189:0-189:80 *)
Definition use_with_const_ty3
- (H : Type) (LEN : usize) (withConstTyHLENInst : WithConstTy_t H LEN)
- (x : withConstTyHLENInst.(WithConstTy_tWithConstTy_t_W)) :
+ (H : Type) (LEN : usize) (withConstTyInst : WithConstTy_t H LEN)
+ (x : withConstTyInst.(WithConstTy_tWithConstTy_t_W)) :
result u64
:=
- withConstTyHLENInst.(WithConstTy_tWithConstTy_t_W_clause_0).(ToU64_t_to_u64)
- x
+ withConstTyInst.(WithConstTy_tWithConstTy_t_W_clause_0).(ToU64_t_to_u64) x
.
(** [traits::test_where1]:
@@ -402,37 +398,37 @@ Arguments mkParentTrait1_t { _ }.
(** Trait declaration: [traits::ChildTrait]
Source: 'src/traits.rs', lines 206:0-206:49 *)
Record ChildTrait_t (Self : Type) := mkChildTrait_t {
- ChildTrait_tChildTrait_t_ParentTrait0SelfInst : ParentTrait0_t Self;
- ChildTrait_tChildTrait_t_ParentTrait1SelfInst : ParentTrait1_t Self;
+ ChildTrait_tChildTrait_t_ParentTrait0Inst : ParentTrait0_t Self;
+ ChildTrait_tChildTrait_t_ParentTrait1Inst : ParentTrait1_t Self;
}.
Arguments mkChildTrait_t { _ }.
-Arguments ChildTrait_tChildTrait_t_ParentTrait0SelfInst { _ }.
-Arguments ChildTrait_tChildTrait_t_ParentTrait1SelfInst { _ }.
+Arguments ChildTrait_tChildTrait_t_ParentTrait0Inst { _ }.
+Arguments ChildTrait_tChildTrait_t_ParentTrait1Inst { _ }.
(** [traits::test_child_trait1]:
Source: 'src/traits.rs', lines 209:0-209:56 *)
Definition test_child_trait1
- (T : Type) (childTraitTInst : ChildTrait_t T) (x : T) : result string :=
- childTraitTInst.(ChildTrait_tChildTrait_t_ParentTrait0SelfInst).(ParentTrait0_t_get_name)
+ (T : Type) (childTraitInst : ChildTrait_t T) (x : T) : result string :=
+ childTraitInst.(ChildTrait_tChildTrait_t_ParentTrait0Inst).(ParentTrait0_t_get_name)
x
.
(** [traits::test_child_trait2]:
Source: 'src/traits.rs', lines 213:0-213:54 *)
Definition test_child_trait2
- (T : Type) (childTraitTInst : ChildTrait_t T) (x : T) :
+ (T : Type) (childTraitInst : ChildTrait_t T) (x : T) :
result
- childTraitTInst.(ChildTrait_tChildTrait_t_ParentTrait0SelfInst).(ParentTrait0_tParentTrait0_t_W)
+ childTraitInst.(ChildTrait_tChildTrait_t_ParentTrait0Inst).(ParentTrait0_tParentTrait0_t_W)
:=
- childTraitTInst.(ChildTrait_tChildTrait_t_ParentTrait0SelfInst).(ParentTrait0_t_get_w)
+ childTraitInst.(ChildTrait_tChildTrait_t_ParentTrait0Inst).(ParentTrait0_t_get_w)
x
.
(** [traits::order1]:
Source: 'src/traits.rs', lines 219:0-219:59 *)
Definition order1
- (T U : Type) (parentTrait0TInst : ParentTrait0_t T) (parentTrait0UInst :
+ (T U : Type) (parentTrait0Inst : ParentTrait0_t T) (parentTrait0Inst1 :
ParentTrait0_t U) :
result unit
:=
@@ -442,11 +438,11 @@ Definition order1
(** Trait declaration: [traits::ChildTrait1]
Source: 'src/traits.rs', lines 222:0-222:35 *)
Record ChildTrait1_t (Self : Type) := mkChildTrait1_t {
- ChildTrait1_tChildTrait1_t_ParentTrait1SelfInst : ParentTrait1_t Self;
+ ChildTrait1_tChildTrait1_t_ParentTrait1Inst : ParentTrait1_t Self;
}.
Arguments mkChildTrait1_t { _ }.
-Arguments ChildTrait1_tChildTrait1_t_ParentTrait1SelfInst { _ }.
+Arguments ChildTrait1_tChildTrait1_t_ParentTrait1Inst { _ }.
(** Trait implementation: [traits::{(traits::ParentTrait1 for usize)#9}]
Source: 'src/traits.rs', lines 224:0-224:27 *)
@@ -455,7 +451,7 @@ Definition ParentTrait1Usize : ParentTrait1_t usize := mkParentTrait1_t.
(** Trait implementation: [traits::{(traits::ChildTrait1 for usize)#10}]
Source: 'src/traits.rs', lines 225:0-225:26 *)
Definition ChildTrait1Usize : ChildTrait1_t usize := {|
- ChildTrait1_tChildTrait1_t_ParentTrait1SelfInst := ParentTrait1Usize;
+ ChildTrait1_tChildTrait1_t_ParentTrait1Inst := ParentTrait1Usize;
|}.
(** Trait declaration: [traits::Iterator]
@@ -494,13 +490,13 @@ Arguments mkFromResidual_t { _ _ }.
Source: 'src/traits.rs', lines 246:0-246:48 *)
Record Try_t (Self : Type) := mkTry_t {
Try_tTry_t_Residual : Type;
- Try_tTry_t_FromResidualSelftraitsTrySelfResidualInst : FromResidual_t Self
+ Try_tTry_t_FromResidualSelftraitsTryResidualInst : FromResidual_t Self
Try_tTry_t_Residual;
}.
Arguments mkTry_t { _ }.
Arguments Try_tTry_t_Residual { _ }.
-Arguments Try_tTry_t_FromResidualSelftraitsTrySelfResidualInst { _ }.
+Arguments Try_tTry_t_FromResidualSelftraitsTryResidualInst { _ }.
(** Trait declaration: [traits::WithTarget]
Source: 'src/traits.rs', lines 252:0-252:20 *)
@@ -526,15 +522,15 @@ Arguments ParentTrait2_tParentTrait2_t_U_clause_0 { _ }.
(** Trait declaration: [traits::ChildTrait2]
Source: 'src/traits.rs', lines 260:0-260:35 *)
Record ChildTrait2_t (Self : Type) := mkChildTrait2_t {
- ChildTrait2_tChildTrait2_t_ParentTrait2SelfInst : ParentTrait2_t Self;
+ ChildTrait2_tChildTrait2_t_ParentTrait2Inst : ParentTrait2_t Self;
ChildTrait2_t_convert :
- (ChildTrait2_tChildTrait2_t_ParentTrait2SelfInst).(ParentTrait2_tParentTrait2_t_U)
+ (ChildTrait2_tChildTrait2_t_ParentTrait2Inst).(ParentTrait2_tParentTrait2_t_U)
-> result
- (ChildTrait2_tChildTrait2_t_ParentTrait2SelfInst).(ParentTrait2_tParentTrait2_t_U_clause_0).(WithTarget_tWithTarget_t_Target);
+ (ChildTrait2_tChildTrait2_t_ParentTrait2Inst).(ParentTrait2_tParentTrait2_t_U_clause_0).(WithTarget_tWithTarget_t_Target);
}.
Arguments mkChildTrait2_t { _ }.
-Arguments ChildTrait2_tChildTrait2_t_ParentTrait2SelfInst { _ }.
+Arguments ChildTrait2_tChildTrait2_t_ParentTrait2Inst { _ }.
Arguments ChildTrait2_t_convert { _ }.
(** Trait implementation: [traits::{(traits::WithTarget for u32)#11}]
@@ -558,7 +554,7 @@ Definition childTrait2U32_convert (x : u32) : result u32 :=
(** Trait implementation: [traits::{(traits::ChildTrait2 for u32)#13}]
Source: 'src/traits.rs', lines 272:0-272:24 *)
Definition ChildTrait2U32 : ChildTrait2_t u32 := {|
- ChildTrait2_tChildTrait2_t_ParentTrait2SelfInst := ParentTrait2U32;
+ ChildTrait2_tChildTrait2_t_ParentTrait2Inst := ParentTrait2U32;
ChildTrait2_t_convert := childTrait2U32_convert;
|}.
@@ -576,26 +572,25 @@ Arguments CFnOnce_t_call_once { _ _ }.
(** Trait declaration: [traits::CFnMut]
Source: 'src/traits.rs', lines 292:0-292:37 *)
Record CFnMut_t (Self Args : Type) := mkCFnMut_t {
- CFnMut_tCFnMut_t_CFnOnceSelfArgsInst : CFnOnce_t Self Args;
+ CFnMut_tCFnMut_t_CFnOnceInst : CFnOnce_t Self Args;
CFnMut_t_call_mut : Self -> Args -> result
- ((CFnMut_tCFnMut_t_CFnOnceSelfArgsInst).(CFnOnce_tCFnOnce_t_Output) *
- Self);
+ ((CFnMut_tCFnMut_t_CFnOnceInst).(CFnOnce_tCFnOnce_t_Output) * Self);
}.
Arguments mkCFnMut_t { _ _ }.
-Arguments CFnMut_tCFnMut_t_CFnOnceSelfArgsInst { _ _ }.
+Arguments CFnMut_tCFnMut_t_CFnOnceInst { _ _ }.
Arguments CFnMut_t_call_mut { _ _ }.
(** Trait declaration: [traits::CFn]
Source: 'src/traits.rs', lines 296:0-296:33 *)
Record CFn_t (Self Args : Type) := mkCFn_t {
- CFn_tCFn_t_CFnMutSelfArgsInst : CFnMut_t Self Args;
+ CFn_tCFn_t_CFnMutInst : CFnMut_t Self Args;
CFn_t_call : Self -> Args -> result
- (CFn_tCFn_t_CFnMutSelfArgsInst).(CFnMut_tCFnMut_t_CFnOnceSelfArgsInst).(CFnOnce_tCFnOnce_t_Output);
+ (CFn_tCFn_t_CFnMutInst).(CFnMut_tCFnMut_t_CFnOnceInst).(CFnOnce_tCFnOnce_t_Output);
}.
Arguments mkCFn_t { _ _ }.
-Arguments CFn_tCFn_t_CFnMutSelfArgsInst { _ _ }.
+Arguments CFn_tCFn_t_CFnMutInst { _ _ }.
Arguments CFn_t_call { _ _ }.
(** Trait declaration: [traits::GetTrait]
@@ -612,10 +607,10 @@ Arguments GetTrait_t_get_w { _ }.
(** [traits::test_get_trait]:
Source: 'src/traits.rs', lines 305:0-305:49 *)
Definition test_get_trait
- (T : Type) (getTraitTInst : GetTrait_t T) (x : T) :
- result getTraitTInst.(GetTrait_tGetTrait_t_W)
+ (T : Type) (getTraitInst : GetTrait_t T) (x : T) :
+ result getTraitInst.(GetTrait_tGetTrait_t_W)
:=
- getTraitTInst.(GetTrait_t_get_w) x
+ getTraitInst.(GetTrait_t_get_w) x
.
End Traits.