-
Notifications
You must be signed in to change notification settings - Fork 547
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'berkeley' into dkijania/terraform_ci
- Loading branch information
Showing
8 changed files
with
251 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
module type S = sig | ||
type 'a t | ||
|
||
val to_string : 'a t -> string | ||
|
||
val binable_key_type : 'a t -> 'a t Bin_prot.Type_class.t | ||
|
||
val binable_data_type : 'a t -> 'a Bin_prot.Type_class.t | ||
end | ||
|
||
module type Some_key_intf = sig | ||
type 'a unwrapped_t | ||
|
||
type t = Some_key : 'a unwrapped_t -> t | ||
|
||
type with_value = Some_key_value : 'a unwrapped_t * 'a -> with_value | ||
end | ||
|
||
module Some_key (K : sig | ||
type 'a t | ||
end) : Some_key_intf with type 'a unwrapped_t := 'a K.t = struct | ||
type t = Some_key : 'a K.t -> t | ||
|
||
type with_value = Some_key_value : 'a K.t * 'a -> with_value | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
base.caml | ||
sexplib0 | ||
extlib | ||
async_unix | ||
;;local libraries | ||
o1trace | ||
mina_metrics | ||
|
Oops, something went wrong.