Skip to content

Commit 055233d

Browse files
committed
Cleanup sandwich core changes.
1 parent b361b33 commit 055233d

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

proof-libs/fstar/core/Alloc.Vec.fst

-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ open Rust_primitives
33

44
unfold type t_Vec t (_: unit) = s:t_Slice t
55

6-
76
let impl__new #t (): t_Vec t () = FStar.Seq.empty
87

98
let impl_2__extend_from_slice #t (#[(Tactics.exact (`()))]alloc:unit) (self: t_Vec t alloc) (other: t_Slice t{Seq.length self + Seq.length other <= max_usize}): t_Vec t alloc
@@ -39,6 +38,3 @@ instance update_at_tc_array t n: update_at_tc (t_Vec t ()) (int_t n) = {
3938

4039
let impl_1__is_empty #t (#[(Tactics.exact (`()))]alloc:unit) (v: t_Vec t alloc): bool =
4140
Seq.length v = 0
42-
43-
44-
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Core.Ptr.Non_null
22

3-
val t_NonNull (v_T: Type0) : eqtype
3+
val t_NonNull (v_T: Type0) : eqtype

0 commit comments

Comments
 (0)