Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Special pages
Niidae Wiki
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Arity
(section)
Page
Discussion
English
Read
Edit
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
View history
General
What links here
Related changes
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== Ternary === The computer programming language [[C (programming language)|C]] and its various descendants (including [[C++]], [[C Sharp (programming language)|C#]], [[Java (programming language)|Java]], [[Julia (programming language)|Julia]], [[Perl]], and others) provide the [[ternary conditional operator]] <code>?:</code>. The first operand (the condition) is evaluated, and if it is true, the result of the entire expression is the value of the second operand, otherwise it is the value of the third operand. This operator has a lazy or 'shortcut' [[evaluation strategy]] that does not evaluate whichever of the second and third arguments is not used. Some functional programming languages, such as [[Agda (programming language)|Agda]], have such an evaluation strategy for all functions and consequently implement {{code|if...then...else}} as an ordinary function; several others, such as [[Haskell]], can do this but for syntactic, performance or historical reasons choose to define keywords instead. The [[Python (programming language)|Python]] language has a ternary conditional expression, {{code|x if C else y|python}}. In [[Elixir (programming language)|Elixir]] the equivalent would be {{code|if(C, do: x, else: y)|elixir}}. The [[Forth (programming language)|Forth]] language also contains a ternary operator, <code>*/</code>, which multiplies the first two (one-cell) numbers, dividing by the third, with the intermediate result being a double cell number. This is used when the intermediate result would overflow a single cell. The Unix [[dc (computer program)|dc calculator]] has several ternary operators, such as <code>|</code>, which will pop three values from the stack and efficiently compute <math display="inline">x^y \bmod z</math> with [[arbitrary-precision arithmetic|arbitrary precision]]. Many ([[Reduced instruction set computing|RISC]]) [[assembly language]] instructions are ternary (as opposed to only two operands specified in CISC); or higher, such as <syntaxhighlight lang="asm" inline="">MOV %AX, (%BX, %CX)</syntaxhighlight>, which will load ({{mono|MOV}}) into register {{mono|AX}} the contents of a calculated memory location that is the sum (parenthesis) of the registers {{mono|BX}} and {{mono|CX}}.<!-- examples section needs complete rewrite, with links and subsection on math, logic and programming -->
Summary:
Please note that all contributions to Niidae Wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Encyclopedia:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Search
Search
Editing
Arity
(section)
Add topic