diff options
| author | coqbot-app[bot] | 2020-10-26 10:15:21 +0000 |
|---|---|---|
| committer | GitHub | 2020-10-26 10:15:21 +0000 |
| commit | 716299d489b5a91ab46b28900d04cd5dd7f7acac (patch) | |
| tree | 879fe350ffb3ec3a9543dae49acb0525a751af44 /clib/cString.ml | |
| parent | a12112c15cdcb0467d4cf5f5a7cfa639852ccd49 (diff) | |
| parent | 71fe84d0d6dc8e646332cc5790308de2f8f0fdab (diff) | |
Merge PR #13137: [ltac] Avoid magic numbers
Reviewed-by: herbelin
Diffstat (limited to 'clib/cString.ml')
| -rw-r--r-- | clib/cString.ml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clib/cString.ml b/clib/cString.ml index dcada4c18f..9d2c3729b2 100644 --- a/clib/cString.ml +++ b/clib/cString.ml @@ -25,6 +25,7 @@ sig val ordinal : int -> string val is_sub : string -> string -> int -> bool val is_prefix : string -> string -> bool + val is_suffix : string -> string -> bool module Set : Set.S with type elt = t module Map : CMap.ExtS with type key = t and module Set := Set module List : CList.MonoS with type elt = t @@ -105,6 +106,9 @@ let is_sub p s off = let is_prefix p s = is_sub p s 0 +let is_suffix p s = + is_sub p s (String.length s - String.length p) + let plural n s = if n<>1 then s^"s" else s let conjugate_verb_to_be n = if n<>1 then "are" else "is" |
