definition: |
fromIndex :: Int -> [a] -> [Int] fromIndex i xs = take (length xs) [i ..] |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Generates a list [i,i+1,i+2,...] with the same length as the input list |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> {:,[]}} |
name: |
fromIndex |
precedence: |
no precedence defined |
result-values: |
{:,[]} |
signature: |
Prelude.Int -> [a] -> [Prelude.Int] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |