* Assign result to be cos(elt1). */
| 1406 | * Assign result to be cos(elt1). |
| 1407 | */ |
| 1408 | static |
| 1409 | inline |
| 1410 | Datum |
| 1411 | element_cos(Datum element, Oid elt_type, Datum result, |
| 1412 | Oid result_type, Datum opt_elt, Oid opt_type){ |
| 1413 | return element_op(element, elt_type, result, result_type, opt_elt, opt_type, float8_cos); |
| 1414 | } |
| 1415 | |
| 1416 | /* |
| 1417 | * Assign result to be (elt1 + elt2). |
nothing calls this directly
no test coverage detected