“Element listy dostępu Haskell” Kod odpowiedzi

Pierwszy element z listy Haskell

list = [1, 2, 3]

head :: [a] -> a
head (x:_) = x

head list -- 1
Hippo_error

Haskell dołącz do listy

1 : [2, 3]
--return [1, 2, 3]
yeah tiger

Element listy dostępu Haskell

--Haskell Lists' are 0 based
--Let xs be a list from where we want the n-th element
?> xs !! n

--Example
?> [1, 2, 3] !! 1
?> 2
theRealCb

Odpowiedzi podobne do “Element listy dostępu Haskell”

Pytania podobne do “Element listy dostępu Haskell”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu