CurryInfo: base-3.4.0 / Prelude.!!

definition: Info
 
(!!) :: [a] -> Int -> a
(x:xs) !! n | n == 0 = x
            | n > 0  = xs !! (n - 1)
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
List index (subscript) operator, head has index 0.
failfree: Info
 <FAILING>
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({:},_) |-> _}
name: Info
 !!
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 [a] -> Int -> a
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term