[elm] Update code to access tuples

This commit is contained in:
andys8 2017-12-23 11:57:45 +01:00
parent 70a36c9bd9
commit c52ae61127
3 changed files with 6 additions and 6 deletions

View File

@ -75,8 +75,8 @@ List.head [] -- Nothing
-- K získání hodnot z dvojice použijte funkce first a second. -- K získání hodnot z dvojice použijte funkce first a second.
-- (Toto je pouze zkratka. Brzy si ukážeme, jak na to "správně".) -- (Toto je pouze zkratka. Brzy si ukážeme, jak na to "správně".)
fst ("elm", 42) -- "elm" Tuple.first ("elm", 42) -- "elm"
snd ("elm", 42) -- 42 Tuple.second ("elm", 42) -- 42
-- Prázná n-tice, neboli "unit", se občas používá jako zástupný symbol. -- Prázná n-tice, neboli "unit", se občas používá jako zástupný symbol.
-- Je to jediná hodnota svého typu, který se také nazývá "Unit". -- Je to jediná hodnota svého typu, který se také nazývá "Unit".

View File

@ -72,8 +72,8 @@ List.head [] -- Nothing
-- Access the elements of a pair with the first and second functions. -- Access the elements of a pair with the first and second functions.
-- (This is a shortcut; we'll come to the "real way" in a bit.) -- (This is a shortcut; we'll come to the "real way" in a bit.)
fst ("elm", 42) -- "elm" Tuple.first ("elm", 42) -- "elm"
snd ("elm", 42) -- 42 Tuple.second ("elm", 42) -- 42
-- The empty tuple, or "unit", is sometimes used as a placeholder. -- The empty tuple, or "unit", is sometimes used as a placeholder.
-- It is the only value of its type, also called "Unit". -- It is the only value of its type, also called "Unit".

View File

@ -76,8 +76,8 @@ List.head [] -- Nothing
-- Acesse os elementos de um par com as funções first e second. -- Acesse os elementos de um par com as funções first e second.
-- (Este é um atalho; nós iremos para o "caminho real" em breve.) -- (Este é um atalho; nós iremos para o "caminho real" em breve.)
fst ("elm", 42) -- "elm" Tuple.first ("elm", 42) -- "elm"
snd ("elm", 42) -- 42 Tuple.second ("elm", 42) -- 42
-- Uma tupla vazia ou "unidade" às vezes é utilizada como um placeholder. -- Uma tupla vazia ou "unidade" às vezes é utilizada como um placeholder.
-- É o único valor de seu tipo, também chamado de "Unit". -- É o único valor de seu tipo, também chamado de "Unit".