Skip to content

Commit

Permalink
Add forgotten PSY_ASIN
Browse files Browse the repository at this point in the history
  • Loading branch information
urbic committed Dec 22, 2023
1 parent 1149040 commit 77dd997
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,19 @@ public sealed interface PsyNumeric
=ContextAction.<PsyNumeric>ofFunction(PsyNumeric::psyAbs);

/**
* Context action of the {@code scos} operator.
* Context action of the {@code acos} operator.
*/
@OperatorType("acos")
public static final ContextAction PSY_ACOS
=ContextAction.<PsyNumeric>ofFunction(PsyNumeric::psyAcos);

/**
* Context action of the {@code asin} operator.
*/
@OperatorType("asin")
public static final ContextAction PSY_ASIN
=ContextAction.<PsyNumeric>ofFunction(PsyNumeric::psyAsin);

/**
* Context action of the {@code atan} operator.
*/
Expand Down

0 comments on commit 77dd997

Please sign in to comment.