Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new boolean operators #465

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
76 changes: 44 additions & 32 deletions docs/maui/includes/math-expression-operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,35 +6,47 @@ ms.topic: include

The following operations are supported:

- "+"
- "-"
- "*"
- "/"
- "%"
- "abs"
- "acos"
- "asin"
- "atan"
- "atan2"
- "ceiling"
- "cos"
- "cosh"
- "exp"
- "floor"
- "ieeeremainder"
- "log"
- "log10"
- "max"
- "min"
- "pow"
- "round"
- "sign"
- "sin"
- "sinh"
- "sqrt"
- "tan"
- "tanh"
- "truncate"
- "^"
- "pi"
- "e"
- `"+"`
- `"-"`
- `"*"`
- `"/"`
- `"%"`
- `"?"` `":"`
- `"=="`
- `"!="`
- `"!"`
- `"or"` or `"||"`
- `"and"` or `"&&"` if you want to use this in XAML you will need to escape the characters (e.g. `"&&"`)
- `"ge"` or `">="` if you want to use this in XAML you will need to escape the characters (e.g. `">="`)
- `"gt"` or `">"` if you want to use this in XAML you will need to escape the characters (e.g. `">"`)
- `"le"` or `"<="` if you want to use this in XAML you will need to escape the characters (e.g. `"&lt;="`)
- `"lt"` or `"<"` if you want to use this in XAML you will need to escape the characters (e.g. `"&lt;"`)
- `"abs"`
- `"acos"`
- `"asin"`
- `"atan"`
- `"atan2"`
- `"ceiling"`
- `"cos"`
- `"cosh"`
- `"exp"`
- `"floor"`
- `"ieeeremainder"`
- `"log"`
- `"log10"`
- `"max"`
- `"min"`
- `"pow"`
- `"round"`
- `"sign"`
- `"sin"`
- `"sinh"`
- `"sqrt"`
- `"tan"`
- `"tanh"`
- `"truncate"`
- `"^"`
- `"pi"`
- `"e"`
- `"true"`
- `"false"`