Skip to content
Snippets Groups Projects
Commit 09f69b7c authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Set Params and maximally implicits for `head` like other list functions.

parent 1657d8d0
No related branches found
No related tags found
No related merge requests found
......@@ -18,10 +18,12 @@ Notation tail := tl.
Notation take := firstn.
Notation drop := skipn.
Arguments head {_} _ : assert.
Arguments tail {_} _ : assert.
Arguments take {_} !_ !_ / : assert.
Arguments drop {_} !_ !_ / : assert.
Instance: Params (@head) 1 := {}.
Instance: Params (@tail) 1 := {}.
Instance: Params (@take) 1 := {}.
Instance: Params (@drop) 1 := {}.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment