Skip to content

Commit

Permalink
docs: add ln function description
Browse files Browse the repository at this point in the history
  • Loading branch information
jbl428 committed Jan 31, 2024
1 parent 19aa609 commit 3f049da
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions docs/en/jpql-with-kotlin-jdsl/expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ Use the following functions to build arithmetic functions:
* ABS (abs)
* CEILING (ceiling)
* FLOOR (floor)
* LN (ln)
* ROUND (round)
* SQRT (sqrt)

Expand All @@ -236,6 +237,8 @@ ceiling(path(Book::price))

floor(path(Book::price))

ln(path(Book::price))

round(path(Book::price), 2)

sqrt(path(Book::price))
Expand All @@ -244,8 +247,6 @@ sqrt(path(Book::price))
| Function | DSL function |
|----------|--------------|
| EXP | not yet |
| FLOOR | not yet |
| LN | not yet |
| MOD | not yet |
| POWER | not yet |
| SIGN | not yet |
Expand Down
5 changes: 3 additions & 2 deletions docs/ko/jpql-with-kotlin-jdsl/expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ locate("Book", path(Book::title))
* ABS (abs)
* CEILING (ceiling)
* FLOOR (floor)
* LN (ln)
* ROUND (round)
* SQRT (sqrt)

Expand All @@ -232,6 +233,8 @@ ceiling(path(Book::price))

floor(path(Book::price))

ln(path(Book::price))

round(path(Book::price), 2)

sqrt(path(Book::price))
Expand All @@ -240,8 +243,6 @@ sqrt(path(Book::price))
| Function | DSL function |
|----------|--------------|
| EXP | not yet |
| FLOOR | not yet |
| LN | not yet |
| MOD | not yet |
| POWER | not yet |
| SIGN | not yet |
Expand Down

0 comments on commit 3f049da

Please sign in to comment.