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 5d5da90 commit 27b772c
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 @@ -227,6 +227,7 @@ Use the following functions to build arithmetic functions:
* CEILING (ceiling)
* EXP (exp)
* FLOOR (floor)
* LN (ln)
* ROUND (round)
* SQRT (sqrt)

Expand All @@ -239,15 +240,15 @@ exp(path(Book::price))

floor(path(Book::price))

ln(path(Book::price))

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

sqrt(path(Book::price))
```

| Function | DSL function |
|----------|--------------|
| 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 @@ -223,6 +223,7 @@ locate("Book", path(Book::title))
* CEILING (ceiling)
* EXP (exp)
* FLOOR (floor)
* LN (ln)
* ROUND (round)
* SQRT (sqrt)

Expand All @@ -235,15 +236,15 @@ exp(path(Book::price))

floor(path(Book::price))

ln(path(Book::price))

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

sqrt(path(Book::price))
```

| Function | DSL function |
|----------|--------------|
| FLOOR | not yet |
| LN | not yet |
| MOD | not yet |
| POWER | not yet |
| SIGN | not yet |
Expand Down

0 comments on commit 27b772c

Please sign in to comment.