1) тернарный 2) троичный 3) трёхкомпонентный 4) тройной
1) троичная [система счисления] Смотри также: counting system, radix 2) трёхзначный
1. имя существительное [устаревшее] 1) три, триада, тройка Синоним(ы): three, triad 2) число, делящееся на три 2. прилагательное 1) троичный, тройной Например: ternary system — троичная система Синоним(ы): threefold, triple 2) [математика] троичный, тернарный 3) [химия, геология] состоящий из трёх составных частей, трёхкомпонентный 4) третий по рангу, по порядку 5) последний в группе, состоящей из трёх элементов; третий
adjective Etymology: Middle English, from Latin ternarius, from terni three each; akin to Latin tres three — more at three 1. a. of, relating to, or proceeding by threes b. having three elements, parts, or divisions c. arranged in threes Example: ternary petals 2. using three as the base Example: a ternary logarithm 3. a. being or consisting of an alloy of three elements b. of, relating to, or containing three different elements, atoms, radicals, or groups Example: sulfuric acid is a ternary acid 4. third in order or rank
A description of an operator taking three arguments. The only common example is C's ?: operator which is used in the form "CONDITION ? EXP1 : EXP2" and returns EXP1 if CONDITION is true else EXP2. Haskell has a similar "if CONDITION then EXP1 else EXP2" operator. See also unary, binary.