doc: add numeric comparison example in function string_eval_expression (plugin API reference)

v2.8-utf8proc
Sébastien Helleu 2017-04-29 18:17:49 +02:00
parent 1afa19a6ee
commit 00eddd3a00
4 changed files with 64 additions and 32 deletions

View File

@ -2083,39 +2083,47 @@ from first used to last):
| `+<=+` |
Less or equal |
`+abc \<= defghi+` +
`+abc \<= abc+` +
`+defghi \<= abc+` |
`+abc <= defghi+` +
`+abc <= abc+` +
`+defghi <= abc+` +
`+15 <= 2+` |
`+1+` +
`+1+` +
`+0+` +
`+0+`
| `+<+` |
Less |
`+abc < defghi+` +
`+abc < abc+` +
`+defghi < abc+` |
`+defghi < abc+` +
`+15 < 2+` |
`+1+` +
`+0+` +
`+0+` +
`+0+`
| `+>=+` |
Greater or equal |
`+defghi >= abc+` +
`+abc >= abc+` +
`+abc >= defghi+` |
`+abc >= defghi+` +
`+15 >= 2+` |
`+1+` +
`+1+` +
`+0+`
`+0+` +
`+1+`
| `+>+` |
Greater |
`+defghi > abc+` +
`+abc > abc+` +
`+abc > defghi+` |
`+abc > defghi+` +
`+15 > 2+` |
`+1+` +
`+0+` +
`+0+`
`+0+` +
`+1+`
|===
List of variables expanded in expression (by order of priority, from first

View File

@ -2125,39 +2125,47 @@ Liste des opérateurs de comparaison qui peuvent être utilisés dans les condit
| `+<=+` |
Plus petit ou égal |
`+abc \<= defghi+` +
`+abc \<= abc+` +
`+defghi \<= abc+` |
`+abc <= defghi+` +
`+abc <= abc+` +
`+defghi <= abc+` +
`+15 <= 2+` |
`+1+` +
`+1+` +
`+0+` +
`+0+`
| `+<+` |
Plus petit |
`+abc < defghi+` +
`+abc < abc+` +
`+defghi < abc+` |
`+defghi < abc+` +
`+15 < 2+` |
`+1+` +
`+0+` +
`+0+` +
`+0+`
| `+>=+` |
Plus grand ou égal |
`+defghi >= abc+` +
`+abc >= abc+` +
`+abc >= defghi+` |
`+abc >= defghi+` +
`+15 >= 2+` |
`+1+` +
`+1+` +
`+0+`
`+0+` +
`+1+`
| `+>+` |
Plus grand |
`+defghi > abc+` +
`+abc > abc+` +
`+abc > defghi+` |
`+abc > defghi+` +
`+15 > 2+` |
`+1+` +
`+0+` +
`+0+`
`+0+` +
`+1+`
|===
Liste des variables étendues dans l'expression (par ordre de priorité, de la

View File

@ -2163,39 +2163,47 @@ from first used to last):
| `+<=+` |
Less or equal |
`+abc \<= defghi+` +
`+abc \<= abc+` +
`+defghi \<= abc+` |
`+abc <= defghi+` +
`+abc <= abc+` +
`+defghi <= abc+` +
`+15 <= 2+` |
`+1+` +
`+1+` +
`+0+` +
`+0+`
| `+<+` |
Less |
`+abc < defghi+` +
`+abc < abc+` +
`+defghi < abc+` |
`+defghi < abc+` +
`+15 < 2+` |
`+1+` +
`+0+` +
`+0+` +
`+0+`
| `+>=+` |
Greater or equal |
`+defghi >= abc+` +
`+abc >= abc+` +
`+abc >= defghi+` |
`+abc >= defghi+` +
`+15 >= 2+` |
`+1+` +
`+1+` +
`+0+`
`+0+` +
`+1+`
| `+>+` |
Greater |
`+defghi > abc+` +
`+abc > abc+` +
`+abc > defghi+` |
`+abc > defghi+` +
`+15 > 2+` |
`+1+` +
`+0+` +
`+0+`
`+0+` +
`+1+`
|===
// TRANSLATION MISSING

View File

@ -2093,39 +2093,47 @@ from first used to last):
| `+<=+` |
Less or equal |
`+abc \<= defghi+` +
`+abc \<= abc+` +
`+defghi \<= abc+` |
`+abc <= defghi+` +
`+abc <= abc+` +
`+defghi <= abc+` +
`+15 <= 2+` |
`+1+` +
`+1+` +
`+0+` +
`+0+`
| `+<+` |
Less |
`+abc < defghi+` +
`+abc < abc+` +
`+defghi < abc+` |
`+defghi < abc+` +
`+15 < 2+` |
`+1+` +
`+0+` +
`+0+` +
`+0+`
| `+>=+` |
Greater or equal |
`+defghi >= abc+` +
`+abc >= abc+` +
`+abc >= defghi+` |
`+abc >= defghi+` +
`+15 >= 2+` |
`+1+` +
`+1+` +
`+0+`
`+0+` +
`+1+`
| `+>+` |
Greater |
`+defghi > abc+` +
`+abc > abc+` +
`+abc > defghi+` |
`+abc > defghi+` +
`+15 > 2+` |
`+1+` +
`+0+` +
`+0+`
`+0+` +
`+1+`
|===
式中で展開される変数のリスト