Skip to content

Commit e38c2c6

Browse files
committed
increase frequency of Bytes.{fill,blit_string}
1 parent 5729bc8 commit e38c2c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bytes/lin_tests_dsl.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ module BConf = struct
2121
val_ "Bytes.of_string" Bytes.of_string (string @-> returning_ t);
2222
val_ "Bytes.to_string" Bytes.to_string (t @-> returning string);
2323
val_ "Bytes.sub_string" Bytes.sub_string (t @-> int @-> int @-> returning_or_exc string);
24-
val_ "Bytes.fill" Bytes.fill (t @-> int @-> int @-> char @-> returning_or_exc unit);
25-
val_ "Bytes.blit_string" Bytes.blit_string (string @-> int @-> t @-> int @-> int @-> returning_or_exc unit);
24+
val_freq 2 "Bytes.fill" Bytes.fill (t @-> int @-> int @-> char @-> returning_or_exc unit);
25+
val_freq 2 "Bytes.blit_string" Bytes.blit_string (string @-> int @-> t @-> int @-> int @-> returning_or_exc unit);
2626
val_ "Bytes.trim" Bytes.trim (t @-> returning_ t);
2727
(* val_ "Bytes.escaped" Bytes.escaped (t @-> returning_ t); *)
2828
val_ "Bytes.index" Bytes.index (t @-> char @-> returning_or_exc int);

0 commit comments

Comments
 (0)