Parameter | Data Type | Description |
|---|---|---|
1 | Any* | The list. |
2 | Any | The compare value. |
Expression | Result |
|---|---|
ListGE( List("a","b","a","c","c"), "b" ) | List("b","c","c") |
ListGE( List("a","b","a","c","c"), "c" ) | List("c","c") |
ListGE( List("a","b","a","c","c"), "d" ) | List() |