definition: |
second :: (a -> b) -> (c, a) -> (c, b) second f (x, y) = (x, f y) |
demand: |
argument 2 |
deterministic: |
deterministic operation |
documentation: |
--- Apply a function to the second component of a tuple. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,{(,)}) |-> {(,)}} |
name: |
second |
precedence: |
no precedence defined |
result-values: |
{(,)} |
signature: |
(a -> b) -> (c, a) -> (c, b) |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |