summaryrefslogtreecommitdiff
path: root/backends/fstar
diff options
context:
space:
mode:
authorSon Ho2023-10-13 10:31:06 +0200
committerSon Ho2023-10-13 10:31:06 +0200
commit8ac8d00b2958d007facb5162196831d0a2138db8 (patch)
tree57f5aca40f201964cffe68ffdbbf729d9850201f /backends/fstar
parentbb37801b3922f617302f5ffe25e8c8e7c0734b08 (diff)
Update Primitives.fst
Diffstat (limited to 'backends/fstar')
-rw-r--r--backends/fstar/Primitives.fst3
1 files changed, 3 insertions, 0 deletions
diff --git a/backends/fstar/Primitives.fst b/backends/fstar/Primitives.fst
index cd18cf29..e9391834 100644
--- a/backends/fstar/Primitives.fst
+++ b/backends/fstar/Primitives.fst
@@ -352,6 +352,9 @@ let array_subslice_mut_fwd (a : Type0) (n : usize) (x : array a n) (r : range us
let array_subslice_mut_back (a : Type0) (n : usize) (x : array a n) (r : range usize) (ns : slice a) : result (array a n) =
admit()
+let array_repeat (a : Type0) (n : usize) (x : a) : array a n =
+ admit()
+
let slice_subslice_shared (a : Type0) (x : slice a) (r : range usize) : result (slice a) =
admit()