Guest User

Untitled

a guest
Nov 11th, 2019
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
OCaml 4.83 KB | None | 0 0
  1. lib/types.ml
  2. module Product_Match_Set = Set.Make(
  3.   struct
  4.     type t = Product_Match.t
  5.     let compare = Product_Match.compare
  6.   end)
  7.  
  8.  
  9. lib/types.mli:
  10. module Product_Match_Set: Set.S with type elt = Product_Match.t
  11.  
  12.  
  13.  
  14. File "lib/types.ml", line 1:                                                                                        
  15. Error: The implementation lib/types.ml                                                                              
  16.        does not match the interface lib/.matching_engine.objs/byte/matching_engine__Types.cmi:                      
  17.        ...                                                                                                          
  18.        In module Product_Match_Set:                                                                                
  19.        The value `of_seq' is required but not provided                                                              
  20.        File "set.mli", line 282, characters 4-31: Expected declaration                                              
  21.        In module Product_Match_Set:                                                                                
  22.        The value `add_seq' is required but not provided                                                            
  23.        File "set.mli", line 278, characters 4-37: Expected declaration                                              
  24.        In module Product_Match_Set:                                                                                
  25.        The value `to_seq' is required but not provided                                                              
  26.        File "set.mli", line 274, characters 4-31: Expected declaration                                              
  27.        In module Product_Match_Set:                                                                                
  28.        The value `to_seq_from' is required but not provided                                                        
  29.        File "set.mli", line 269, characters 4-43: Expected declaration                                              
  30.        In module Product_Match_Set:                                                                                
  31.        The value `find_last_opt' is required but not provided                                                      
  32.        File "set.mli", line 254, characters 4-55: Expected declaration                                              
  33.        In module Product_Match_Set:                                                                                
  34.        The value `find_last' is required but not provided                                                          
  35.        File "set.mli", line 247, characters 4-44: Expected declaration                                              
  36.        In module Product_Match_Set:                                                                                
  37.        The value `find_first_opt' is required but not provided                                                      
  38.        File "set.mli", line 240, characters 4-56: Expected declaration                                              
  39.        In module Product_Match_Set:                                                                                
  40.        The value `find_first' is required but not provided                                                          
  41.        File "set.mli", line 227, characters 4-45: Expected declaration                                              
  42.        In module Product_Match_Set:                                                                                
  43.        The value `find_opt' is required but not provided                                                            
  44.        File "set.mli", line 221, characters 4-40: Expected declaration                                              
  45.        In module Product_Match_Set:                                                                                
  46.        The value `choose_opt' is required but not provided                                                          
  47.        File "set.mli", line 199, characters 4-35: Expected declaration                                              
  48.        In module Product_Match_Set:                                                                                
  49.        The value `max_elt_opt' is required but not provided                                                        
  50.        File "set.mli", line 188, characters 4-36: Expected declaration                                              
  51.        In module Product_Match_Set:                                                                                
  52.        The value `min_elt_opt' is required but not provided                                                        
  53.        File "set.mli", line 177, characters 4-36: Expected declaration
Advertisement
Add Comment
Please, Sign In to add comment