115116117118119120121122123124125
return t.fun_COSH( to_double( _args[ 0 ] ) ); } break; case SIN: if (1 == c ) { return t.fun_SIN( to_double( _args[ 0 ] ) ); } break; case SINH: if (1 == c ) { return t.fun_SINH( to_double( _args[ 0 ] ) );
204205206207208209210211212213214
return adjustReturnedValue( t.fun_COSH( to_BigDecimal( _args[ 0 ] ) ) ); } break; case SIN: if (1 == c ) { return adjustReturnedValue( t.fun_SIN( to_BigDecimal( _args[ 0 ] ) ) ); } break; case SINH: if (1 == c ) { return adjustReturnedValue( t.fun_SINH( to_BigDecimal( _args[ 0 ] ) ) );
207208209210211212213214215216217
121122123124125126127128129130131
return t.fun_COSH( to_long( _args[ 0 ] ) ); } break; case SIN: if (1 == c ) { return t.fun_SIN( to_long( _args[ 0 ] ) ); } break; case SINH: if (1 == c ) { return t.fun_SINH( to_long( _args[ 0 ] ) );