Skip to content

Commit 522ea08

Browse files
authored
Merge pull request #113189 from v-maudel/patch-487
C189395 Adding Hard Breaks before code
2 parents c98e464 + 13705b6 commit 522ea08

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

articles/data-factory/data-flow-expression-functions.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ In Data Factory, use the expression language of the mapping data flow feature to
2121
___
2222
### <code>abs</code>
2323
<code><b>abs(<i>&lt;value1&gt;</i> : number) => number</b></code><br/><br/>
24-
Absolute value of a number.
24+
Absolute value of a number.
2525
* ``abs(-20) -> 20``
2626
* ``abs(10) -> 10``
27-
___
27+
___
2828
### <code>acos</code>
2929
<code><b>acos(<i>&lt;value1&gt;</i> : number) => double</b></code><br/><br/>
30-
Calculates a cosine inverse value
30+
Calculates a cosine inverse value
3131
* ``acos(1) -> 0.0``
3232
___
3333
### <code>add</code>
3434
<code><b>add(<i>&lt;value1&gt;</i> : any, <i>&lt;value2&gt;</i> : any) => any</b></code><br/><br/>
35-
Adds a pair of strings or numbers. Adds a date to a number of days. Adds a duration to a timestamp. Appends one array of similar type to another. Same as the + operator
35+
Adds a pair of strings or numbers. Adds a date to a number of days. Adds a duration to a timestamp. Appends one array of similar type to another. Same as the + operator
3636
* ``add(10, 20) -> 30``
3737
* ``10 + 20 -> 30``
3838
* ``add('ice', 'cream') -> 'icecream'``
@@ -44,39 +44,39 @@ Adds a pair of strings or numbers. Adds a date to a number of days. Adds a durat
4444
___
4545
### <code>addDays</code>
4646
<code><b>addDays(<i>&lt;date/timestamp&gt;</i> : datetime, <i>&lt;days to add&gt;</i> : integral) => datetime</b></code><br/><br/>
47-
Add days to a date or timestamp. Same as the + operator for date
47+
Add days to a date or timestamp. Same as the + operator for date
4848
* ``addDays(toDate('2016-08-08'), 1) -> toDate('2016-08-09')``
4949
___
5050
### <code>addMonths</code>
5151
<code><b>addMonths(<i>&lt;date/timestamp&gt;</i> : datetime, <i>&lt;months to add&gt;</i> : integral, [<i>&lt;value3&gt;</i> : string]) => datetime</b></code><br/><br/>
52-
Add months to a date or timestamp. You can optionally pass a timezone
52+
Add months to a date or timestamp. You can optionally pass a timezone
5353
* ``addMonths(toDate('2016-08-31'), 1) -> toDate('2016-09-30')``
5454
* ``addMonths(toTimestamp('2016-09-30 10:10:10'), -1) -> toTimestamp('2016-08-31 10:10:10')``
5555
___
5656
### <code>and</code>
5757
<code><b>and(<i>&lt;value1&gt;</i> : boolean, <i>&lt;value2&gt;</i> : boolean) => boolean</b></code><br/><br/>
58-
Logical AND operator. Same as &&
58+
Logical AND operator. Same as &&
5959
* ``and(true, false) -> false``
6060
* ``true && false -> false``
6161
___
6262
### <code>asin</code>
6363
<code><b>asin(<i>&lt;value1&gt;</i> : number) => double</b></code><br/><br/>
64-
Calculates an inverse sine value
64+
Calculates an inverse sine value
6565
* ``asin(0) -> 0.0``
6666
___
6767
### <code>atan</code>
6868
<code><b>atan(<i>&lt;value1&gt;</i> : number) => double</b></code><br/><br/>
69-
Calculates a inverse tangent value
69+
Calculates a inverse tangent value
7070
* ``atan(0) -> 0.0``
7171
___
7272
### <code>atan2</code>
7373
<code><b>atan2(<i>&lt;value1&gt;</i> : number, <i>&lt;value2&gt;</i> : number) => double</b></code><br/><br/>
74-
Returns the angle in radians between the positive x-axis of a plane and the point given by the coordinates
74+
Returns the angle in radians between the positive x-axis of a plane and the point given by the coordinates
7575
* ``atan2(0, 0) -> 0.0``
7676
___
7777
### <code>byName</code>
7878
<code><b>byName(<i>&lt;column name&gt;</i> : string, [<i>&lt;stream name&gt;</i> : string]) => any</b></code><br/><br/>
79-
Selects a column value by name in the stream. You can pass a optional stream name as the second argument. If there are multiple matches, the first match is returned. If no match it returns a NULL value. The returned value has to be type converted by one of the type conversion functions(TO_DATE, TO_STRING ...). Column names known at design time should be addressed just by their name. Computed inputs are not supported but you can use parameter substitutions
79+
Selects a column value by name in the stream. You can pass a optional stream name as the second argument. If there are multiple matches, the first match is returned. If no match it returns a NULL value. The returned value has to be type converted by one of the type conversion functions(TO_DATE, TO_STRING ...). Column names known at design time should be addressed just by their name. Computed inputs are not supported but you can use parameter substitutions
8080
* ``toString(byName('parent'))``
8181
* ``toLong(byName('income'))``
8282
* ``toBoolean(byName('foster'))``

0 commit comments

Comments
 (0)