cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

User defined functions with examples

Former Member
0 Likes
6,480

Hi,

Being am a trainee i didnt understand much about the user-defined functions at my training period..

Will you plz tell about them with best examples as u developed in real time and their requirement in scenario..

I tried for them very much in SDN..that is not statisfactory

Regards

guna

View Entire Topic
Former Member
0 Likes

Hi,

you will need udfs if the standard functions can't fulfill your requirements.

For example if you have boolean values in a context and want to know if at least one of them is true you will need a udf.

Example1:

input:

false

false

true

false

output:

true

Example 2:

input:

false

false

false

false

output:

false

Regards

Patrick