• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

MinaProtocol / mina / 3409

26 Feb 2025 01:10PM UTC coverage: 32.353% (-28.4%) from 60.756%
3409

push

buildkite

web-flow
Merge pull request #16687 from MinaProtocol/dw/merge-compatible-into-develop-20250225

Merge compatible into develop [20250224]

23144 of 71535 relevant lines covered (32.35%)

16324.05 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

50.0
/src/lib/mina_stdlib/list.ml
1
open Core_kernel
34✔
2
include List
3

4
module Length = struct
5
  type 'a t = ('a list, int) Sigs.predicate2
6

7
  let equal l len = Caml.List.compare_length_with l len = 0
×
8

9
  let unequal l len = Caml.List.compare_length_with l len <> 0
×
10

11
  let gte l len = Caml.List.compare_length_with l len >= 0
1✔
12

13
  let gt l len = Caml.List.compare_length_with l len > 0
1✔
14

15
  let lte l len = Caml.List.compare_length_with l len <= 0
×
16

17
  let lt l len = Caml.List.compare_length_with l len < 0
×
18

19
  module Compare = struct
20
    let ( = ) = equal
21

22
    let ( <> ) = unequal
23

24
    let ( >= ) = gte
25

26
    let ( > ) = gt
27

28
    let ( <= ) = lte
29

30
    let ( < ) = lt
31
  end
32
end
68✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc