mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-22 12:32:09 +03:00
[elm] Update code to access tuples
This commit is contained in:
parent
70a36c9bd9
commit
c52ae61127
@ -75,8 +75,8 @@ List.head [] -- Nothing
|
||||
|
||||
-- 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ě".)
|
||||
fst ("elm", 42) -- "elm"
|
||||
snd ("elm", 42) -- 42
|
||||
Tuple.first ("elm", 42) -- "elm"
|
||||
Tuple.second ("elm", 42) -- 42
|
||||
|
||||
-- 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".
|
||||
|
@ -72,8 +72,8 @@ List.head [] -- Nothing
|
||||
|
||||
-- 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.)
|
||||
fst ("elm", 42) -- "elm"
|
||||
snd ("elm", 42) -- 42
|
||||
Tuple.first ("elm", 42) -- "elm"
|
||||
Tuple.second ("elm", 42) -- 42
|
||||
|
||||
-- The empty tuple, or "unit", is sometimes used as a placeholder.
|
||||
-- It is the only value of its type, also called "Unit".
|
||||
|
@ -76,8 +76,8 @@ List.head [] -- Nothing
|
||||
|
||||
-- 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.)
|
||||
fst ("elm", 42) -- "elm"
|
||||
snd ("elm", 42) -- 42
|
||||
Tuple.first ("elm", 42) -- "elm"
|
||||
Tuple.second ("elm", 42) -- 42
|
||||
|
||||
-- Uma tupla vazia ou "unidade" às vezes é utilizada como um placeholder.
|
||||
-- É o único valor de seu tipo, também chamado de "Unit".
|
||||
|
Loading…
Reference in New Issue
Block a user