CurryInfo: base-3.4.0 / Data.List.transpose

definition: Info
 
transpose               :: [[a]] -> [[a]]
transpose []             = []
transpose ([]     : xss) = transpose xss
transpose ((x:xs) : xss) = (x : map head xss) : transpose (xs : map tail xss)
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Transposes the rows and columns of the argument.

Example: `(transpose [[1,2,3],[4,5,6]]) = [[1,4],[2,5],[3,6]]`
failfree: Info
 <FAILING>
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({[]}) |-> {[]} || ({:}) |-> {:,[]}}
name: Info
 transpose
precedence: Info
 no precedence defined
result-values: Info
 {:,[]}
signature: Info
 [[a]] -> [[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