How do I provide implicit arguments explicitly in Coq?

Question

Suppose I have a definition f : x -> y -> z where x can be easily inferred. I therefore choose to make x an implicit argument using Arguments.

Consider the following example:

Definition id : forall (S : Set), S -> S := fun S s => s.

Arguments id {_} s.

id 1 : nat

Clearly S = nat can be and is inferred by Coq, and Coq replies:

id 1 : nat

However, at a later time, I want to make the implicit argument explicit, say, for readability.

In other words, I would like something like:

(* We want to make it clear that the 2nd argument is nat *)
Unknown interpretation for notation "{ _ }".

Is this possible at all? If so, what is the appropriate syntax?

Answer

You can prepend the name with @ to remove all implicits and provide them explicitly:

id 1 : nat

You can also use (a:=v) to pass an implicit argument by name. This can both clarify what argument is being passed and also allows you to pass some implicits without passing _ for the others:

id 1 : nat
Definition third {A B C : Type} (a : A) (b : B) (c : C) := c.
third tt 1 2 : nat