diff options
| author | pboutill | 2012-07-20 14:22:48 +0000 |
|---|---|---|
| committer | pboutill | 2012-07-20 14:22:48 +0000 |
| commit | 57128547546baa38ab436c87ed66361342c36cb8 (patch) | |
| tree | 9d2f20fe0bde422d9e5eefd25e3e78142aed1cb0 /lib | |
| parent | 1982377ee52a4361a3537f13f379facd6f57d62f (diff) | |
Reductionops refactoring
Semantic changes are :
- whd_nored_stack remplaces a defined meta by its value whereas the old whd_stack
didn't.
- Zcase and Zfix are alwais put on stack. iota_flag is checked by constructors and
cofix.
- simpl uses its own whd_ function that do not touch at matched term
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15634 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/option.mli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/option.mli b/lib/option.mli index 217aa66961..a9899f7428 100644 --- a/lib/option.mli +++ b/lib/option.mli @@ -67,7 +67,7 @@ val fold_right : ('a -> 'b -> 'b) -> 'a option -> 'b -> 'b (** [fold_map f a x] is [a, f y] if [x] is [Some y], and [a] otherwise. *) val fold_map : ('a -> 'b -> 'a * 'c) -> 'a -> 'b option -> 'a * 'c option -(** [cata e f x] is [e] if [x] is [None] and [f a] if [x] is [Some a] *) +(** [cata f e x] is [e] if [x] is [None] and [f a] if [x] is [Some a] *) val cata : ('a -> 'b) -> 'b -> 'a option -> 'b (** {6 More Specific Operations} ***) |
