OCLOperators Empty
No edit summary
(Updated Edited template to July 12, 2025.)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<message>Write the content here to display this box</message>
[[Category:OCL General Operators]]
[[Category:OCL General Operators]]
The Empty operator is a Boolean operator that is used to check if a collection or string is empty or not. It returns true if the collection or string has no elements, and false otherwise. It can be used with any collection type, including sets, sequences, and bags, as well as with strings.
Here are a few examples of how the Empty operator can be used:
# Checking if a sequence is empty:
sequence1.empty()
This will return true if "sequence1" is empty, and false otherwise.
2. Checking if a set is empty:
set1.empty()
This will return true if "set1" is empty, and false otherwise.
3. Checking if a string is empty:
string1.empty()
This will return true if "string1" is empty, and false otherwise.
{{Edited|July|12|2025}}

Latest revision as of 05:54, 20 January 2025

This page was created by Peter on 2019-11-18. Last edited by Edgar on 2025-01-20.

The Empty operator is a Boolean operator that is used to check if a collection or string is empty or not. It returns true if the collection or string has no elements, and false otherwise. It can be used with any collection type, including sets, sequences, and bags, as well as with strings.

Here are a few examples of how the Empty operator can be used:

  1. Checking if a sequence is empty:
sequence1.empty()

This will return true if "sequence1" is empty, and false otherwise.

2. Checking if a set is empty:

set1.empty()

This will return true if "set1" is empty, and false otherwise.

3. Checking if a string is empty:

string1.empty()

This will return true if "string1" is empty, and false otherwise.