Module Kernel.CppExtraArgs


module CppExtraArgs: Plugin.String_set 
Behavior of option "-cpp-extra-args"

include Plugin.Parameter
val add : string -> unit
Add a string to the string set option.
val remove : string -> unit
Remove a string from the option.
val is_empty : unit -> bool
Check if the set is empty.
val get_set : ?sep:string -> unit -> string
Get a string which concatenates each string in the set with a separator. The default separator is ", ".
val iter : (string -> unit) -> unit
Iter on each string in the set.
val exists : (string -> bool) -> bool
Checks if at least one element of the set satisfies the predicate.
Since Carbon-20101201